美文网首页
Nginx配置代理

Nginx配置代理

作者: angelali_90b4 | 来源:发表于2023-03-29 15:28 被阅读0次
       #公众号安全文件
        location /MP_verify_fa2aZsc6jPSO3SXC.txt {
           alias /www/wwwroot/dhu/MP_verify_fa2aZsc6jPSO3SXC.txt;
        }
        
        #订货系统
        location /dh/app/ {
          proxy_pass http://localhost:8080/beiyao/dh/app/;
        }
        location /dh/ { 
            index  index.html index.htm;
            try_files $uri $uri/ /dh/index.html;  
        }
        
        #核销系统
        location /byjhx/ {
            index  index.html index.htm;
            try_files $uri $uri/ /dh/index.html;  
        }
        location /byjhx/api/ {
          proxy_pass http://localhost:8080/;
            #启用支持websocket连接
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
        }
    

    相关文章

      网友评论

          本文标题:Nginx配置代理

          本文链接:https://www.haomeiwen.com/subject/sjmfddtx.html