chore: initial project scaffold: frontend/nginx.conf

This commit is contained in:
2026-04-13 11:52:55 +00:00
parent 17454dc8e5
commit 7967ddfa43

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";
}
}