Files
bellsystems-cp/frontend/nginx.prod.conf
2026-06-16 12:15:25 +03:00

18 lines
362 B
Plaintext

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# SPA fallback — all unknown routes serve index.html
location / {
try_files $uri $uri/ /index.html;
}
# Cache static assets
location ~* \.(js|css|png|svg|ico|woff2?)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}