Files

12 lines
216 B
Nginx Configuration File
Raw Permalink Normal View History

2026-08-10 22:05:18 +08:00
server {
listen 80;
server_name localhost;
# 前端静态文件
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}