首页  >  文章  >  运维  >  nginx负载均衡配置的方法是什么

nginx负载均衡配置的方法是什么

WBOY
WBOY转载
2023-05-22 14:16:061457浏览
[root@localhost ~]# vim nginx.conf   

user  nginx;
worker_processes  1;

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

events {
    worker_connections  1024;
}

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负载均衡配置的方法是什么的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:yisu.com。如有侵权,请联系admin@php.cn删除