Prevent stale frontend assets in Docker
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-17 00:00:24 +02:00
parent 01f063b921
commit 539ec71806
4 changed files with 14 additions and 0 deletions
+10
View File
@@ -5,6 +5,16 @@ server {
root /usr/share/nginx/html;
index index.html;
location = /index.html {
add_header Cache-Control "no-cache";
try_files /index.html =404;
}
location /assets/ {
add_header Cache-Control "no-cache";
try_files $uri =404;
}
location /api/ {
proxy_pass http://backend:8000/api/;
proxy_http_version 1.1;