File size: 640 Bytes
e1ae2c6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
charset utf-8;
location = / {
try_files /index.html =404;
add_header Cache-Control "no-store";
}
location ~* \.(?:css|js|mjs|json|ico|png|jpe?g|gif|svg|webp|txt|xml|map)$ {
try_files $uri =404;
access_log off;
add_header Cache-Control "public, max-age=3600";
}
location ~* \.html$ {
try_files $uri =404;
add_header Cache-Control "no-store";
}
location / {
try_files $uri $uri/ /404.html;
add_header Cache-Control "no-store";
}
}
|