* cleanup templates by using variables * add configuration for wp-rocket * update mapping for wp-rocket
11 lines
272 B
Plaintext
11 lines
272 B
Plaintext
# PHP NGINX CONFIGURATION - WO v3.9.7
|
|
# 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 {{upstream}};
|
|
}
|