Files
Astronome/frontend/nginx-frontend.conf
2026-04-10 23:33:09 +02:00

28 lines
554 B
Plaintext

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
default_type application/octet-stream;
location /api/ {
proxy_pass http://backend:3001;
}
location / {
try_files $uri $uri/ /index.html;
}
location = /index.html {
expires -1;
add_header Cache-Control "no-cache";
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
add_header X-Content-Type-Options nosniff;
}