This repository has been archived on 2026-05-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
app/apps/web/nginx.conf
T
Paperclip ddd93f4092 fix(web): remove redundant nginx /api/ proxy block
API routing is handled exclusively by HTTPRoute in K8s. The nginx
/api/ proxy block was never hit in those environments and creates
architectural confusion.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-05 10:03:22 +00:00

17 lines
356 B
Nginx Configuration File

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