-
Notifications
You must be signed in to change notification settings - Fork 3
/
save_lgzip.cgi
32 lines (26 loc) · 1011 Bytes
/
save_lgzip.cgi
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/bin/perl
# Save location gzip options
use strict;
use warnings;
require 'virtualmin-nginx-lib.pl';
our (%text, %in, %access);
&lock_all_config_files();
&error_setup($text{'ssl_err'});
&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'});
&nginx_onoff_parse("gzip", $location);
&nginx_opt_parse("gzip_disable", $location, undef);
&nginx_opt_parse("gzip_comp_level", $location, undef, '^[1-9]$');
&nginx_opt_list_parse("gzip_types", $location, undef,
'^[a-zA-Z0-9\.\_\-]+\/[a-zA-Z0-9\.\_\-]+$');
&flush_config_file_lines();
&unlock_all_config_files();
my $name = &find_value("server_name", $server);
&webmin_log("gzip", "location", $location->{'words'}->[0],
{ 'server' => $name });
&redirect("edit_location.cgi?id=".&urlize($in{'id'}).
"&path=".&urlize($in{'path'}));