mirror of
https://github.com/Gurkengewuerz/nitro-docker.git
synced 2024-11-26 17:50:52 +01:00
fix: no cache
This commit is contained in:
parent
da0f3b1e46
commit
212606febd
@ -28,14 +28,18 @@ server {
|
|||||||
|
|
||||||
|
|
||||||
location /nginx {
|
location /nginx {
|
||||||
return 404;
|
return 403;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ thumbnail {
|
location /translation {
|
||||||
|
return 403;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~* (.*/thumbnail)/(.+\.png)$ {
|
||||||
# kill cache
|
# kill cache
|
||||||
add_header Cache-Control 'no-store, no-cache';
|
expires -1;
|
||||||
expires off;
|
|
||||||
etag off;
|
etag off;
|
||||||
|
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
|
||||||
|
|
||||||
include conf.d/corsdefault.template;
|
include conf.d/corsdefault.template;
|
||||||
}
|
}
|
||||||
@ -50,9 +54,9 @@ server {
|
|||||||
|
|
||||||
location ~*\.(json)$ {
|
location ~*\.(json)$ {
|
||||||
# kill cache
|
# kill cache
|
||||||
add_header Cache-Control 'no-store, no-cache';
|
expires -1;
|
||||||
expires off;
|
|
||||||
etag off;
|
etag off;
|
||||||
|
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
|
||||||
|
|
||||||
include conf.d/corsdefault.template;
|
include conf.d/corsdefault.template;
|
||||||
}
|
}
|
||||||
|
@ -5,11 +5,9 @@ server {
|
|||||||
|
|
||||||
location / {
|
location / {
|
||||||
# kill cache
|
# kill cache
|
||||||
add_header Last-Modified $date_gmt;
|
expires -1;
|
||||||
add_header Cache-Control 'no-store, no-cache';
|
|
||||||
if_modified_since off;
|
|
||||||
expires off;
|
|
||||||
etag off;
|
etag off;
|
||||||
|
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
|
||||||
|
|
||||||
root /usr/share/nginx/html;
|
root /usr/share/nginx/html;
|
||||||
index index.html index.htm;
|
index index.html index.htm;
|
||||||
|
Loading…
Reference in New Issue
Block a user