Home > Operation and Maintenance > Nginx > What is the method of nginx load balancing configuration?

What is the method of nginx load balancing configuration?

WBOY
Release: 2023-05-22 14:16:06
forward
1467 people have browsed it
[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;
        }

    }
}
Copy after login

The above is the detailed content of What is the method of nginx load balancing configuration?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template