美文网首页
nginx集群

nginx集群

作者: Ktry | 来源:发表于2021-07-01 10:33 被阅读0次
    http{
        ......
        upstream name001{
            ip_hash;  //
            server 127.0.0.1:9001;
            server 127.0.0.1:9002;
            ......
        }
        server{
        ......
            location /api {
                proxy_set_header X-Real-IP $remote_addr;
                proxy_pass http://name001/;
            }
        }
    }
    
    

    相关文章

      网友评论

          本文标题:nginx集群

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