2025-02-20 01:22:19 +08:00

21 lines
319 B
Nginx Configuration File

# 用户连接数
worker_processes 1;
events {
worker_connections 1024;
}
http {
server {
listen 80;
# 设置根目录
root /usr/share/nginx/html;
index index.html;
# 处理SPA路由
location / {
try_files $uri $uri/ /index.html;
}
}
}