mdserver-web/plugins/php-yum/conf/enable-php.conf

9 lines
254 B
Plaintext
Raw Permalink Normal View History

2022-07-07 02:22:04 -04:00
set $PHP_ENV 1;
location ~ [^/]\.php(/|$)
{
try_files $uri =404;
2022-07-07 05:17:20 -04:00
fastcgi_pass unix:/var/opt/remi/php{$PHP_VERSION}/run/php-fpm/www.sock;
2022-07-07 02:22:04 -04:00
fastcgi_index index.php;
include fastcgi.conf;
include {$SERVER_PATH}/web_conf/php/pathinfo.conf;
}