fix(deploy): harden runtime config and migrations

This commit is contained in:
2026-03-10 17:10:23 +04:00
parent 2efb18a4de
commit 1b490fa4a5
6 changed files with 27 additions and 11 deletions

View File

@@ -10,6 +10,11 @@ server {
return 200 '{"ok":true}';
}
location = /config.js {
add_header Cache-Control "no-store, no-cache, must-revalidate" always;
try_files $uri =404;
}
location / {
try_files $uri $uri/ /index.html;
}