diff options
author | Remi Collet <remi@remirepo.net> | 2020-04-15 09:29:12 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-04-15 09:29:12 +0200 |
commit | 6224dc50a7aec5729ec6036f77f8a9ffb07df6b4 (patch) | |
tree | 59bd53396791f1572fd331c06196c021111b1458 /php.conf2 | |
parent | ffef10cdf19fb648662ee089a5ccffd0eb31f30d (diff) |
new snapshot
Diffstat (limited to 'php.conf2')
-rw-r--r-- | php.conf2 | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -1,12 +1,14 @@ -# Redirect to local php-fpm if mod_php (5 or 7) is not available +# Redirect to local php-fpm if mod_php (5, 7 or 8) is not available <IfModule !mod_php5.c> <IfModule !mod_php7.c> - # Enable http authorization headers - SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1 + <IfModule !mod_php.c> + # Enable http authorization headers + SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1 - <FilesMatch \.(php|phar)$> - SetHandler "proxy:fcgi://127.0.0.1:9000" - </FilesMatch> + <FilesMatch \.(php|phar)$> + SetHandler "proxy:fcgi://127.0.0.1:9000" + </FilesMatch> + </IfModule> </IfModule> </IfModule> |