Fix static cache errors

This commit is contained in:
Ashley Rich 2015-11-17 19:57:53 +00:00
parent a24bc1e2e1
commit 382e0805ab
7 changed files with 15 additions and 3 deletions

View File

@ -39,9 +39,6 @@ http {
# Gzip
include global/gzip.conf;
# Cache Static Content
include global/cache.conf;
# Security
include global/security.conf;

View File

@ -23,6 +23,9 @@ server {
# Log exclusions
include per-site/logs.conf;
# Cache static content
include per-site/cache.conf;
# Fastcgi cache rules
include per-site/fastcgi-cache.conf;

View File

@ -18,6 +18,9 @@ server {
# Log exclusions
include per-site/logs.conf;
# Cache static content
include per-site/cache.conf;
location / {
try_files $uri $uri/ /index.php?$args;
}

View File

@ -18,6 +18,9 @@ server {
# Log exclusions
include per-site/logs.conf;
# Cache static content
include per-site/cache.conf;
location / {
try_files $uri $uri/ /index.php?$args;
}

View File

@ -18,6 +18,9 @@ server {
# Log exclusions
include per-site/logs.conf;
# Cache static content
include per-site/cache.conf;
location / {
try_files $uri $uri/ /index.php?$args;
}

View File

@ -23,6 +23,9 @@ server {
# Log exclusions
include per-site/logs.conf;
# Cache static content
include per-site/cache.conf;
# SSL rules
include per-site/ssl.conf;