Files
Guillem Hernandez Sola f1fe15d1b5 Tots els compose
2026-06-30 13:12:37 +02:00

16 lines
343 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# Rutes d'Astro: si no troba el fitxer, retorna 404.html
location / {
try_files $uri $uri/ $uri.html =404;
}
# Cache agressiva per a assets compilats (hash al nom)
location /_astro/ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}