Files
noveria-landing/nginx.conf
T
devops 2732df9795
CI - Build & Test / Lint & Build (push) Successful in 8s
feat: noveria.net coming soon landingpage with galaxy theme
2026-06-14 15:52:31 +02:00

22 lines
493 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
# Security headers
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "no-referrer-when-downgrade" always;
# Cache static assets
location /css/ {
expires 7d;
add_header Cache-Control "public, immutable";
}
}