-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathedit_sdocs.cgi
More file actions
executable file
·32 lines (24 loc) · 948 Bytes
/
edit_sdocs.cgi
File metadata and controls
executable file
·32 lines (24 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/local/bin/perl
# Show document related options for a virtual host
use strict;
use warnings;
require './virtualmin-nginx-lib.pl';
our (%text, %in, %access);
&ReadParse();
my $server = &find_server($in{'id'});
$server || &error($text{'server_egone'});
&can_edit_server($server) || &error($text{'server_ecannot'});
&ui_print_header(&server_desc($server), $text{'sdocs_title'}, "");
print &ui_form_start("save_sdocs.cgi", "post");
print &ui_hidden("id", $in{'id'});
print &ui_table_start($text{'docs_header'}, undef, 2);
if (!&foreign_check("virtual-server")) {
print &nginx_opt_input("root", $server, 60, undef,
&file_chooser_button("root", 1));
}
print &nginx_opt_input("index", $server, 60, undef, undef, 1);
print &nginx_opt_input("default_type", $server, 20);
print &ui_table_end();
print &ui_form_end([ [ undef, $text{'save'} ] ]);
&ui_print_footer("edit_server.cgi?id=".&urlize($in{'id'}),
$text{'server_return'});