Browse Source

Merge pull request #263 from RenzoF/master

Fixes for security issue on admin tools site and bug on wpsc.conf
old-stable
Mitesh Shah 11 years ago
parent
commit
05f97000d5
  1. 1
      usr/share/easyengine/nginx/22222
  2. 2
      usr/share/easyengine/nginx/wp/wpsc.conf

1
usr/share/easyengine/nginx/22222

@ -32,6 +32,7 @@ server {
}
location ~ \.php$ {
include common/acl.conf;
try_files $uri =404;
include fastcgi_params;
fastcgi_pass php;

2
usr/share/easyengine/nginx/wp/wpsc.conf

@ -32,7 +32,7 @@ server {
# Use Cached Or Actual File If They Exists, Otherwise Pass Request To WordPress
location / {
try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php;
try_files /wp-content/cache/supercache/$http_host/$cache_uri/index.html $uri $uri/ /index.php$args;
}
location ~ \.php$ {

Loading…
Cancel
Save