Files
astro-tina/nginx.conf
Kunthawat Greethong 4ab5f16798
Some checks failed
Deploy to Easypanel / deploy (push) Has been cancelled
Initial
2026-04-27 19:13:27 +07:00

15 lines
284 B
Nginx Configuration File

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