frontend: put cache policy in nginx config instead of index.html

Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
This commit is contained in:
Nicolas Froger 2024-07-27 23:40:23 +02:00
commit 132abef7c0
No known key found for this signature in database
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
map $sent_http_content_type $expires {
default off;
text/html epoch;
text/css 1d;
application/javascript 1d;
}
server {
listen 8080;
server_name localhost;
@ -6,5 +13,6 @@ server {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
expires $expires;
}
}