Fix static cache errors
This commit is contained in:
parent
a24bc1e2e1
commit
382e0805ab
@ -39,9 +39,6 @@ http {
|
|||||||
# Gzip
|
# Gzip
|
||||||
include global/gzip.conf;
|
include global/gzip.conf;
|
||||||
|
|
||||||
# Cache Static Content
|
|
||||||
include global/cache.conf;
|
|
||||||
|
|
||||||
# Security
|
# Security
|
||||||
include global/security.conf;
|
include global/security.conf;
|
||||||
|
|
||||||
|
|||||||
@ -23,6 +23,9 @@ server {
|
|||||||
# Log exclusions
|
# Log exclusions
|
||||||
include per-site/logs.conf;
|
include per-site/logs.conf;
|
||||||
|
|
||||||
|
# Cache static content
|
||||||
|
include per-site/cache.conf;
|
||||||
|
|
||||||
# Fastcgi cache rules
|
# Fastcgi cache rules
|
||||||
include per-site/fastcgi-cache.conf;
|
include per-site/fastcgi-cache.conf;
|
||||||
|
|
||||||
|
|||||||
@ -18,6 +18,9 @@ server {
|
|||||||
# Log exclusions
|
# Log exclusions
|
||||||
include per-site/logs.conf;
|
include per-site/logs.conf;
|
||||||
|
|
||||||
|
# Cache static content
|
||||||
|
include per-site/cache.conf;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ /index.php?$args;
|
try_files $uri $uri/ /index.php?$args;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,6 +18,9 @@ server {
|
|||||||
# Log exclusions
|
# Log exclusions
|
||||||
include per-site/logs.conf;
|
include per-site/logs.conf;
|
||||||
|
|
||||||
|
# Cache static content
|
||||||
|
include per-site/cache.conf;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ /index.php?$args;
|
try_files $uri $uri/ /index.php?$args;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,6 +18,9 @@ server {
|
|||||||
# Log exclusions
|
# Log exclusions
|
||||||
include per-site/logs.conf;
|
include per-site/logs.conf;
|
||||||
|
|
||||||
|
# Cache static content
|
||||||
|
include per-site/cache.conf;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ /index.php?$args;
|
try_files $uri $uri/ /index.php?$args;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,6 +23,9 @@ server {
|
|||||||
# Log exclusions
|
# Log exclusions
|
||||||
include per-site/logs.conf;
|
include per-site/logs.conf;
|
||||||
|
|
||||||
|
# Cache static content
|
||||||
|
include per-site/cache.conf;
|
||||||
|
|
||||||
# SSL rules
|
# SSL rules
|
||||||
include per-site/ssl.conf;
|
include per-site/ssl.conf;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user