summaryrefslogtreecommitdiffstats
path: root/php.conf
diff options
context:
space:
mode:
Diffstat (limited to 'php.conf')
-rw-r--r--php.conf14
1 files changed, 14 insertions, 0 deletions
diff --git a/php.conf b/php.conf
index 0639c0a..36496ef 100644
--- a/php.conf
+++ b/php.conf
@@ -50,3 +50,17 @@ DirectoryIndex index.php
#php_value opcache.file_cache "/var/lib/php/opcache"
</IfModule>
+
+# Redirect to local php-fpm if mod_php (5 or 7) is not available
+<IfModule !mod_php5.c>
+ <IfModule !mod_php7.c>
+ <IfModule !mod_php.c>
+ # Enable http authorization headers
+ SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
+
+ <FilesMatch \.(php|phar)$>
+ SetHandler "proxy:unix:/run/php-fpm/www.sock|fcgi://localhost"
+ </FilesMatch>
+ </IfModule>
+ </IfModule>
+</IfModule>