[root@localhost ~]# vim <a style="color:#f60; text-decoration:underline;" href="https://www.php.cn/zt/16000.html" target="_blank">nginx</a>.conf   

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;

events {
    worker_connections  10二4;
}

http {

    upstream pools {
        server 10.10.0.110:8080 weight=1;
        server 10.10.0.110:8081 weight=1;
    }

    server {
        listen       80;
        server_name  localhost;
        location / {
            root   html;
            index  index.html index.htm;
            proxy_pass http://pools;
            proxy_set_header Host  $host;
        }

    }
}
登录后复造

以上便是nginx负载平衡配备的办法是甚么的具体形式,更多请存眷萤水红IT仄台其余相闭文章!

点赞(48) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部