Files
WPIQ/wo/cli/templates/php.mustache
VirtuBox d11b7e27ef fix stack issues
* fix php7.2 stack detection
* add php7.3 as php7.0 replacement
2019-03-02 20:38:31 +01:00

11 lines
253 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$is_args$args;
}
location ~ \.php$ {
try_files $uri =404;
include fastcgi_params;
fastcgi_pass php72;
}