diff options
author | Remi Collet <remi@remirepo.net> | 2024-09-23 15:31:00 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-09-23 15:31:00 +0200 |
commit | 740a14090dec83951484a2705d7ffc7555ebb768 (patch) | |
tree | 7768a1c01872b781aaa4d530dd0cac8fe3bd7e3d /php.conf | |
parent | 16b62b61c0de11f9b89c4805a9b37e9bbc2ec12f (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.conf | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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> |