Files
WPIQ/wo/cli/templates/php.mustache
2018-11-13 21:55:59 +01:00

11 lines
244 B
Plaintext

# PHP NGINX CONFIGURATION
# DO NOT MODIFY, ALL CHANGES WILL BE LOST AFTER AN WordOps (wo) UPDATE
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
include fastcgi_params;
fastcgi_pass php;
}