1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

не факт что заработает) в3

This commit is contained in:
1
2024-12-25 13:32:06 +06:00
parent 594d0a0385
commit 833646e2bc

View File

@@ -5,13 +5,17 @@ server {
root /usr/share/nginx/html;
index index.html;
# Все маршруты должны обрабатываться через index.html для SPA
# Основной маршрут для статических файлов
location / {
try_files $uri $uri/ /index.html;
add_header Cache-Control "no-store, no-cache, must-revalidate";
add_header X-Content-Type-Options nosniff;
add_header X-Frame-Options DENY;
add_header X-XSS-Protection "1; mode=block";
add_header Cache-Control "no-cache, no-store, must-revalidate";
}
# Маршрут для админ-панели
location /admin {
alias /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
add_header Cache-Control "no-cache, no-store, must-revalidate";
}
# API прокси
@@ -22,19 +26,11 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Увеличим таймауты для отладки
proxy_connect_timeout 120s;
proxy_send_timeout 120s;
proxy_read_timeout 120s;
}
# Явно запретим доступ к .git и другим служебным директориям
location ~ /\. {
deny all;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
# Обработка ошибок
error_page 404 /index.html;
error_page 500 502 503 504 /50x.html;
}