Fix basic auth on SME9

This commit is contained in:
Daniel Berteaud 2014-04-23 09:33:39 +02:00
parent 8db2ec196c
commit f75ef41d68
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ if (($pydio{'status'} || 'disabled') eq 'enabled'){
my $allow = (($pydio{'access'} || 'private') eq 'public') ? 'all':"$localAccess $externalSSLAccess";
my $auth = (($pydio{'Authentication'} || 'http') eq 'http') ? "AuthName \"Pydio\"\n" .
" AuthType Basic\n" .
" AuthBasicProvider external\n" .
" AuthExternal pwauth\n" .
" Require valid-user\n" : '';
my $maxsize = $pydio{'MaxUploadSize'} || '200M';