Load frontend configuration at container startup

This commit is contained in:
achraf
2026-06-07 16:32:23 +02:00
parent 0b2d38ee5e
commit 796fa7bb4b
10 changed files with 133 additions and 33 deletions

View File

@@ -33,6 +33,12 @@ server {
add_header Cache-Control "public";
}
location = /config.js {
try_files $uri =404;
add_header Cache-Control "no-store, no-cache, must-revalidate";
expires -1;
}
location / {
try_files $uri $uri/ /index.html;
}