Ребренд Мониторинг Орбита -> Железный Егорин; accent green->amber #F59E0B; LoginScreen правая половина = Lightning (WebGL, hue 35 тёплый) под стеклянной формой; левая панель — тёплый градиент. Доступ агентам: репо публичный, push german-токеном. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
718 B
Nginx Configuration File
23 lines
718 B
Nginx Configuration File
server {
|
||
listen 80;
|
||
server_name _;
|
||
root /usr/share/nginx/html;
|
||
index index.html;
|
||
|
||
# SPA: все маршруты → index.html
|
||
location / {
|
||
try_files $uri $uri/ /index.html;
|
||
}
|
||
|
||
# Статика с кэшем
|
||
location /assets/ {
|
||
expires 30d;
|
||
add_header Cache-Control "public, immutable";
|
||
}
|
||
|
||
# API-прокси к бэкенду-шлюзу (следующий этап) — раскомментировать при деплое бэка
|
||
# location /api/ { proxy_pass http://servaki-monitor-api:4100; }
|
||
# location /socket { proxy_pass http://servaki-monitor-api:4100; proxy_http_version 1.1;
|
||
# proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; }
|
||
}
|