Fix variable in httpd template

This commit is contained in:
Daniel Berteaud 2013-10-11 13:27:18 +02:00
parent 7be2cc0ee6
commit ce7c4a63cd
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ my $users = join(' ', @users);
my $allow = ( $access eq 'public' ) ? 'all' : "$localAccess $externalSSLAccess";
$alias = ($alias ne 'enabled') ? '' : 'Alias /phplist /usr/share/phplist/www/';
my $auth = ( $auth eq 'http' ) ? '' : 'AuthName "phplist"' . "\n" .
$auth = ( $auth eq 'http' ) ? '' : 'AuthName "phplist"' . "\n" .
" AuthType Basic\n" .
" AuthExternal pwauth\n" .
" require user $users\n";