summaryrefslogtreecommitdiffstats
path: root/php.conf
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2024-09-23 15:31:00 +0200
committerRemi Collet <remi@php.net>2024-09-23 15:31:00 +0200
commit740a14090dec83951484a2705d7ffc7555ebb768 (patch)
tree7768a1c01872b781aaa4d530dd0cac8fe3bd7e3d /php.conf
parent16b62b61c0de11f9b89c4805a9b37e9bbc2ec12f (diff)
update to 8.4.0beta5
drop oci8, pdo_oci8, pspell and imap extensions disable ZTS build
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>