Files
WPIQ/wo/cli/templates/php7.mustache

11 lines
253 B
Plaintext
Raw Normal View History

2018-11-13 21:55:59 +01:00
# PHP NGINX CONFIGURATION
# DO NOT MODIFY, ALL CHANGES WILL BE LOST AFTER AN WordOps (wo) UPDATE
location / {
try_files $uri $uri/ /index.php$is_args$args;
2018-11-13 21:55:59 +01:00
}
location ~ \.php$ {
try_files $uri =404;
include fastcgi_params;
fastcgi_pass php73;
2018-11-13 21:55:59 +01:00
}