diff options
author | Martin Fuchs <mfuchs77@gmail.com> | 2014-07-21 00:34:38 +0200 |
---|---|---|
committer | Martin Fuchs <mfuchs77@gmail.com> | 2014-07-21 00:34:38 +0200 |
commit | 0813e48c1dc469c2a0633fed512e0258af36da31 (patch) | |
tree | 67fff614c5971305a9c1e842bf528ca4d61be6d8 /config | |
parent | 6c9bbf39f0dd898fad419b7a373375ef1faf2b50 (diff) | |
download | pfsense-packages-0813e48c1dc469c2a0633fed512e0258af36da31.tar.gz pfsense-packages-0813e48c1dc469c2a0633fed512e0258af36da31.tar.bz2 pfsense-packages-0813e48c1dc469c2a0633fed512e0258af36da31.zip |
autocreate http-reverse for autodiscover
Diffstat (limited to 'config')
-rw-r--r-- | config/squid3/31/squid_reverse.inc | 4 | ||||
-rwxr-xr-x | config/squid3/33/squid_reverse.inc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/config/squid3/31/squid_reverse.inc b/config/squid3/31/squid_reverse.inc index 749d0c44..badaeebe 100644 --- a/config/squid3/31/squid_reverse.inc +++ b/config/squid3/31/squid_reverse.inc @@ -78,7 +78,7 @@ function squid_resync_reverse() { $real_ifaces[] = squid_get_real_interface_address($iface); if($real_ifaces[$i][0]) { //HTTP - if (!empty($settings['reverse_http'])) + if (!empty($settings['reverse_http']) OR ($settings['reverse_owa_autodiscover'] == 'on')) $conf .= "http_port {$real_ifaces[$i][0]}:{$http_port} accel defaultsite={$http_defsite} vhost\n"; //HTTPS if (!empty($settings['reverse_https'])) @@ -90,7 +90,7 @@ function squid_resync_reverse() { $reverse_ip = explode(";", ($settings['reverse_ip'])); foreach ($reverse_ip as $reip) { //HTTP - if (!empty($settings['reverse_http'])) + if (!empty($settings['reverse_http']) OR ($settings['reverse_owa_autodiscover'] == 'on')) $conf .= "http_port {$reip}:{$http_port} accel defaultsite={$http_defsite} vhost\n"; //HTTPS if (!empty($settings['reverse_https'])) diff --git a/config/squid3/33/squid_reverse.inc b/config/squid3/33/squid_reverse.inc index 25f0ae93..1332f220 100755 --- a/config/squid3/33/squid_reverse.inc +++ b/config/squid3/33/squid_reverse.inc @@ -78,7 +78,7 @@ function squid_resync_reverse() { $real_ifaces[] = squid_get_real_interface_address($iface); if($real_ifaces[$i][0]) { //HTTP - if (!empty($settings['reverse_http'])) + if (!empty($settings['reverse_http']) OR ($settings['reverse_owa_autodiscover'] == 'on')) $conf .= "http_port {$real_ifaces[$i][0]}:{$http_port} accel defaultsite={$http_defsite} vhost\n"; //HTTPS if (!empty($settings['reverse_https'])) @@ -90,7 +90,7 @@ function squid_resync_reverse() { $reverse_ip = explode(";", ($settings['reverse_ip'])); foreach ($reverse_ip as $reip) { //HTTP - if (!empty($settings['reverse_http'])) + if (!empty($settings['reverse_http']) OR ($settings['reverse_owa_autodiscover'] == 'on')) $conf .= "http_port {$reip}:{$http_port} accel defaultsite={$http_defsite} vhost\n"; //HTTPS if (!empty($settings['reverse_https'])) |