Files
carlitosbond f510bec447 Initial commit — docker stack carloselugo.com
Services: Caddy, frontend, Uptime Kuma, Netdata, ntfy, Dozzle, Gitea
2026-04-23 18:57:20 +00:00

20 lines
456 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# SPA fallback
location / {
try_files $uri $uri/ /index.html;
}
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|svg|ico|woff2?)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
gzip on;
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
}