系统相关
首页 > 系统相关> > Nginx 配置备查

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;
        }



标签:index,api,配置,uri,Nginx,备查,html,location,节点
来源: https://www.cnblogs.com/congxinglong/p/16415238.html