From 6258a340683af7a683bc1d7245bcfad996b83993 Mon Sep 17 00:00:00 2001 From: doktornotor Date: Sun, 12 Jul 2015 20:32:59 +0200 Subject: apache_mod_security-dev - fix Bug #3360, Bug #4421 Leaving the Backend Path blank does not add / to backendpath in configuration, contrary to what's suggested in the GUI, resulting in HTTP 503 Error. --- config/apache_mod_security-dev/apache_mod_security.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/apache_mod_security-dev/apache_mod_security.inc b/config/apache_mod_security-dev/apache_mod_security.inc index 72c1f9b4..ed5596d6 100644 --- a/config/apache_mod_security-dev/apache_mod_security.inc +++ b/config/apache_mod_security-dev/apache_mod_security.inc @@ -603,8 +603,8 @@ EOF; } $vh_config.=" \n"; - $vh_config.=" ProxyPass balancer://{$backend['balancer']}{$backend['backendpath']}\n"; - $vh_config.=" ProxyPassReverse balancer://{$backend['balancer']}{$backend['backendpath']}\n"; + $vh_config.=" ProxyPass balancer://{$backend['balancer']}".($backend['backendpath'] ? $backend['backendpath'] : "/")."\n"; + $vh_config.=" ProxyPassReverse balancer://{$backend['balancer']}".($backend['backendpath'] ? $backend['backendpath'] : "/")."\n"; if ($backend['compress']== "no") $vh_config.=" SetInputFilter INFLATE\n SetOutputFilter INFLATE\n"; if ($backend['modsecgroup']!="" && $backend['modsecgroup']!="none" && $mods_settings['enablemodsecurity']=="on"){ -- cgit v1.2.3