events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; # Логирование access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; # Основные настройки sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; client_max_body_size 100M; # Gzip сжатие gzip on; gzip_vary on; gzip_min_length 1024; gzip_types text/plain text/css text/xml text/javascript application/json application/javascript application/xml+rss application/atom+xml image/svg+xml; # Upstream для backend API upstream mc_panel_api { server mc-panel:8000; } server { listen 80; server_name _; root /usr/share/nginx/html; index index.html; # Статические файлы frontend location / { try_files $uri $uri/ /index.html; # Кэширование статических файлов location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { expires 1y; add_header Cache-Control "public, immutable"; } } # API запросы к backend location /api/ { proxy_pass http://mc_panel_api; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; 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_cache_bypass $http_upgrade; # Таймауты proxy_connect_timeout 60s; proxy_send_timeout 60s; proxy_read_timeout 60s; } # WebSocket для консоли location /ws/ { proxy_pass http://mc_panel_api; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $host; 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; # WebSocket таймауты proxy_connect_timeout 7d; proxy_send_timeout 7d; proxy_read_timeout 7d; } # Health check location /health { access_log off; return 200 "healthy\n"; add_header Content-Type text/plain; } # Безопасность location ~ /\. { deny all; } } }