mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-29 19:51:20 -04:00
* Issue #2446 : Fix passing authentication headers. Use CGIPassAuth is version is high enough * Issue #2446 : Remove CGIPassAuth due to potential issues with AllowOverride rights. * Tabs
10 lines
260 B
ApacheConf
10 lines
260 B
ApacheConf
<IfModule mod_setenvif.c>
|
|
SetEnvIfNoCase "Authorization" "(.*)" HTTP_AUTHORIZATION=$1
|
|
</IfModule>
|
|
<IfModule !mod_setenvif.c>
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine on
|
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
|
</IfModule>
|
|
</IfModule>
|