Files
apps-registry/workloads/ecommerce/nginx.conf
T
devops 54d2f208ae
Build and Push Frontend / build (push) Successful in 1m57s
feat(ecommerce): release Ari Shopping Frontend v2
2026-07-18 16:34:01 -05:00

1 line
598 B
Nginx Configuration File

server { listen 80; server_name _; root /usr/share/nginx/html; index index.html; charset utf-8; server_tokens off; location = /healthz { access_log off; default_type text/plain; return 200 "ok\n"; } location ~* \.(css|js|svg|png|jpg|jpeg|webp|ico)$ { expires 7d; add_header Cache-Control "public, max-age=604800"; try_files $uri =404; } location ~* \.json$ { expires -1; add_header Cache-Control "no-store"; try_files $uri =404; } location / { try_files $uri $uri/ /index.html; } add_header X-Content-Type-Options nosniff always; add_header Referrer-Policy strict-origin-when-cross-origin always; }