chore: initial project scaffold: frontend/nginx.conf

This commit is contained in:
2026-04-22 06:30:24 +00:00
parent 7b8db9b86c
commit 34487b11f8

14
frontend/nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /assets/ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}