18 lines
628 B
Plaintext
18 lines
628 B
Plaintext
# WPSC NGINX CONFIGURATION - WO v3.9.5
|
|
# DO NOT MODIFY, ALL CHANGES WILL BE LOST AFTER AN WordOps (wo) UPDATE
|
|
# $cache_uri variable set in /etc/nginx/conf.d/map-wp.conf
|
|
|
|
# Use cached or actual file if they exists, Otherwise pass request to WordPress
|
|
location / {
|
|
# If we add index.php?$args its break WooCommerce like plugins
|
|
# Ref: #330
|
|
try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php;
|
|
}
|
|
location ~ \.php$ {
|
|
try_files $uri =404;
|
|
include fastcgi_params;
|
|
fastcgi_pass php73;
|
|
# Following line is needed by WP Super Cache plugin
|
|
fastcgi_param SERVER_NAME $http_host;
|
|
}
|