freekake_webapp/nginx.conf
2025-08-08 13:11:59 +07:00

22 lines
330 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
root /var/www/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /_nuxt/ {
expires 1y;
add_header Cache-Control "public";
}
location = /index.html {
expires -1;
add_header Cache-Control "no-store";
}
}