Nginx 配置备查

坑点:

  • 结尾必须加分号
# 服务节点
    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;
        }



posted @ 2022-06-27 09:58  太晓  阅读(18)  评论(0编辑  收藏  举报