Files
demo-frontend/nginx.conf
joe fe1c93eacc
Some checks failed
Build & Deploy Frontend / build (push) Has been cancelled
Build & Deploy Frontend / deploy (push) Has been cancelled
init: demo-frontend with CI/CD template
2026-07-19 02:13:25 +08:00

23 lines
456 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# SPA fallback
location / {
try_files $uri $uri/ /index.html;
}
# 静态资源缓存
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
# 健康检查
location /healthz {
access_log off;
return 200 "ok\n";
}
}