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 / {
|
2019-02-25 07:47:36 +01:00
|
|
|
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 hhvm;
|
|
|
|
|
}
|