Files
Catalyst/nginx.conf
josh 99034ec926
Some checks failed
Build / build (push) Has been cancelled
ci/cd reformats
2026-03-27 23:11:28 -04:00

20 lines
381 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# SPA fallback for client-side routing
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(css|js)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
location = /index.html {
add_header Cache-Control "no-store";
}
}