diff options
author | jim-p <jimp@pfsense.org> | 2010-10-18 14:10:45 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2010-10-18 14:22:47 -0400 |
commit | 76c3422f13661cbb37e66e297c27efc6b5a6c569 (patch) | |
tree | 6816974ea70882ac8c340776e44b7dac7b8d8bfd /config/squidGuard/squidguard.inc | |
parent | c11e08971fa6d1844670f75216fc8339eee73ee6 (diff) | |
download | pfsense-packages-76c3422f13661cbb37e66e297c27efc6b5a6c569.tar.gz pfsense-packages-76c3422f13661cbb37e66e297c27efc6b5a6c569.tar.bz2 pfsense-packages-76c3422f13661cbb37e66e297c27efc6b5a6c569.zip |
Patch from vcoque to restrict squidguard redirect for errors to http only.
Diffstat (limited to 'config/squidGuard/squidguard.inc')
-rw-r--r-- | config/squidGuard/squidguard.inc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/config/squidGuard/squidguard.inc b/config/squidGuard/squidguard.inc index 303f53b0..f5df409a 100644 --- a/config/squidGuard/squidguard.inc +++ b/config/squidGuard/squidguard.inc @@ -1074,21 +1074,20 @@ function convert_pfxml_to_sgxml() { # other $sgxml['view_gui_log'] = $pfxml['view_gui_log']; + $lanip = $config['interfaces']['lan']['ipaddr']; + $sgxml[F_CURRENT_LAN_IP] = $lanip; # transparent $squidxml = $config['installedpackages']['squid']['config'][0]; - if(isset($squidxml['transparent_proxy'])) { - $lanip = $config['interfaces']['lan']['ipaddr']; + if($squidxml['transparent_proxy'] == 'on') { $guiport = $config['system']['webgui']['port']; $guiprotocol = $config['system']['webgui']['protocol']; $sgxml[F_SQUID_TRANSPARENT_MODE] = 'on'; - $sgxml[F_CURRENT_LAN_IP] = $lanip; $sgxml[F_CURRENT_GUI_PORT] = $guiport; $sgxml[F_CURRENT_GUI_PROTO] = $guiprotocol; } else { unset($sgxml[F_SQUID_TRANSPARENT_MODE]); - unset($sgxml[F_CURRENT_LAN_IP]); unset($sgxml[F_CURRENT_GUI_PORT]); unset($sgxml[F_CURRENT_GUI_PROTO]); } |