mirror of
https://github.com/webmin/webmin.git
synced 2026-05-06 15:20:29 +01:00
39 lines
1.2 KiB
Perl
Executable File
39 lines
1.2 KiB
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Show location gzip options
|
|
|
|
use strict;
|
|
use warnings;
|
|
require './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'});
|
|
my $location = &find_location($server, $in{'path'});
|
|
$location || &error($text{'location_egone'});
|
|
|
|
&ui_print_header(&location_desc($server, $location), $text{'gzip_title'}, "");
|
|
|
|
print &ui_form_start("save_lgzip.cgi", "post");
|
|
print &ui_hidden("id", $in{'id'});
|
|
print &ui_hidden("path", $in{'path'});
|
|
print &ui_table_start($text{'gzip_header'}, undef, 2);
|
|
|
|
print &nginx_onoff_input("gzip", $location);
|
|
|
|
print &nginx_opt_input("gzip_disable", $location, 60, $text{'net_regexp'});
|
|
|
|
print &nginx_opt_input("gzip_comp_level", $location, 5,
|
|
$text{'gzip_level'});
|
|
|
|
print &nginx_opt_list_input("gzip_types", $location, 60, $text{'ssi_types'});
|
|
|
|
print &ui_table_end();
|
|
print &ui_form_end([ [ undef, $text{'save'} ] ]);
|
|
|
|
&ui_print_footer("edit_location.cgi?id=".&urlize($in{'id'}).
|
|
"&path=".&urlize($in{'path'}),
|
|
$text{'location_return'},
|
|
"edit_server.cgi?id=".&urlize($in{'id'}),
|
|
$text{'server_return'});
|