Добавил докер и касторизацию через env

This commit is contained in:
Ilia Miheev
2026-06-20 21:53:03 +03:00
parent 709eaacadb
commit c9347b8d20
16 changed files with 243 additions and 30 deletions
+15
View File
@@ -0,0 +1,15 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location = /config.json {
add_header Cache-Control "no-store";
}
}