Files
GermanandClaude Opus 4.8 b1c52ab748 Железный Егорин — форк Орбиты: тёплый стиль (amber), логин с odyssey WebGL-молнией справа, энергомониторинг+панель
Ребренд Мониторинг Орбита -> Железный Егорин; accent green->amber #F59E0B; LoginScreen правая половина = Lightning (WebGL, hue 35 тёплый) под стеклянной формой; левая панель — тёплый градиент.
Доступ агентам: репо публичный, push german-токеном.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-07 23:57:16 +03:00

23 lines
718 B
Nginx Configuration File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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"; }
}