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

11 lines
282 B
Plaintext
Raw Permalink Normal View History

# PHP NGINX CONFIGURATION - WordOps {{release}}
2018-11-13 21:55:59 +01:00
# 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 {{upstream}};
2018-11-13 21:55:59 +01:00
}