This commit is contained in:
2026-01-27 06:59:40 +00:00
parent ccfbb7a1df
commit 945125b069
18 changed files with 1842 additions and 1 deletions
+15
View File
@@ -9,6 +9,21 @@ server {
try_files $uri /index.html;
}
location = /index.html {
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0" always;
try_files $uri /index.html;
}
location = /manifest.webmanifest {
add_header Cache-Control "no-store, max-age=0" always;
try_files $uri =404;
}
location = /sw.js {
add_header Cache-Control "no-store, max-age=0" always;
try_files $uri =404;
}
location /api/ {
proxy_pass http://backend:5001;
proxy_http_version 1.1;