Fix AllowHosts when setting more than 2 IP

This commit is contained in:
Daniel Berteaud 2015-09-01 15:28:49 +02:00
parent 6115dc46e7
commit 51133cdbf1
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ if ($allow ne ''){
$allow = "$localAccess $externalSSLAccess";
}
else{
$allow =~ s/[,;]/ /;
$allow =~ s/[,;]/ /g;
}
$OUT .=<<"EOF"