Files
frontend/nginx.conf.tmpl
2026-07-15 22:51:56 +08:00

12 lines
174 B
Cheetah

server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}