# Configuração Nginx para Archon Frontend # Serve arquivos estáticos buildados pelo Vite em modo produção # Porta: 3737 server { listen 3737; server_name _; # Diretório dos arquivos estáticos root /usr/share/nginx/html; index index.html; # Gzip compression para otimizar transferência gzip on; gzip_vary on; gzip_min_length 1024; gzip_proxied any; gzip_comp_level 6; gzip_types text/plain text/css text/xml text/javascript application/json application/javascript application/xml+rss application/rss+xml font/truetype font/opentype application/vnd.ms-fontobject image/svg+xml; # Cache de assets estáticos (JS, CSS, imagens, fonts) location ~* \.(js|css|png|jpg|jpeg|gif|svg|ico|woff|woff2|ttf|eot)$ { expires 1y; add_header Cache-Control "public, immutable"; access_log off; } # SPA - todas as rotas retornam index.html # O React Router gerencia o roteamento no cliente location / { try_files $uri $uri/ /index.html; add_header Cache-Control "no-cache, no-store, must-revalidate"; add_header Pragma "no-cache"; add_header Expires "0"; } # Security headers add_header X-Frame-Options "SAMEORIGIN" always; add_header X-Content-Type-Options "nosniff" always; add_header X-XSS-Protection "1; mode=block" always; add_header Referrer-Policy "strict-origin-when-cross-origin" always; # Disable server tokens server_tokens off; # Error pages error_page 404 /index.html; error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } }