Add mod_proxy_fcgi and mod_fastcgi to .htaccess

This commit is contained in:
RealRancor 2015-08-11 10:55:57 +02:00
parent 20c251a575
commit e30e6710dc
1 changed files with 5 additions and 2 deletions

View File

@ -1,10 +1,13 @@
# Version: 9.0.0
<IfModule mod_headers.c>
<IfModule mod_fcgid.c>
<IfModule mod_setenvif.c>
<IfModule mod_setenvif.c>
<IfModule mod_fcgid.c>
SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1
RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION
</IfModule>
<IfModule mod_proxy_fcgi.c>
SetEnvIfNoCase Authorization "(.+)" HTTP_AUTHORIZATION=$1
</IfModule>
</IfModule>
<IfModule mod_env.c>