Files
WPIQ/wo/cli/templates/php-hhvm.mustache
VirtuBox eb6f183f05 update nginx php query parameter handling
* replace /index.php?$args with /index.php$is_args$args according to WP 5.0 rest api faq
2019-03-05 13:45:16 +01:00

11 lines
252 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 hhvm;
}