坑点:
- 结尾必须加分号
# 服务节点
server {
listen 27182; # 服务端口
server_name 192.168.2.108; # 服务地址
root html; # 应用文件根路径
# 首页节点, 根节点
location / {
# 重定向配置
try_files $uri $uri/ @router;
# 首页配置
index index.html index.htm;
}
# 反向代理
location ^~ /api {
proxy_pass http://127.0.0.1:8000/api;
}
# 路由重定向
location @router {
rewrite ^.*$ /index.html last;
}
原创文章,作者:1402239773,如若转载,请注明出处:https://blog.ytso.com/270508.html