Add nginx.conf from template
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending

This commit is contained in:
jordan 2026-01-29 08:37:47 +00:00
parent ec52db5e92
commit 846483a28b

27
nginx.conf Normal file
View File

@ -0,0 +1,27 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
# Gzip compression
gzip on;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml;
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
# SPA fallback
location / {
try_files $uri $uri/ /index.html;
}
# Health check
location /health {
return 200 'ok';
add_header Content-Type text/plain;
}
}