Spaces:
Running
Running
File size: 405 Bytes
e3bbdaf 7897a78 e3bbdaf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | server {
listen 7860;
server_name localhost;
# 静态资源目录
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# 支持单页应用路由
try_files $uri $uri/ /index.html;
}
# 错误页面处理
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
|