⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 change_proxy.cgi

📁 Unix下基于Web的管理工具
💻 CGI
字号:
#!/usr/local/bin/perl# change_proxy.cgi# Change proxy settingsrequire './webmin-lib.pl';&error_setup($text{'proxy_err'});&ReadParse();if ($in{'http_def'}) { delete($gconfig{'http_proxy'}); }elsif ($in{'http'} !~ /^http:\/\/(\S+):(\d+)/) {	&error($text{'proxy_ehttp'});	}else { $gconfig{'http_proxy'} = $in{'http'}; }if ($in{'ftp_def'}) { delete($gconfig{'ftp_proxy'}); }elsif ($in{'ftp'} !~ /^http:\/\/(\S+):(\d+)/) {	&error($text{'proxy_eftp'});	}else { $gconfig{'ftp_proxy'} = $in{'ftp'}; }$gconfig{'noproxy'} = $in{'noproxy'};&write_file("$config_directory/config", \%gconfig);&redirect("");

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -