Fix basic auth on SME9

This commit is contained in:
Daniel Berteaud 2014-04-22 18:59:11 +02:00
parent 1f5812c879
commit 510580624f
1 changed files with 1 additions and 0 deletions

View File

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