Files
Astronome/frontend/nginx-frontend.conf
T
2026-04-10 00:20:32 +02:00

16 lines
319 B
Plaintext

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}