nginx负载均衡精简配置实例

Posted 御用闲人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx负载均衡精简配置实例相关的知识,希望对你有一定的参考价值。

[[email protected] ~]# 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负载均衡精简配置实例的主要内容,如果未能解决你的问题,请参考以下文章

Nginx负载均衡配置实例详解

[Nginx]nginx 配置实例-负载均衡

Nginx负载均衡配置实例详解

Nginx 配置实例-配置负载均衡

Nginx 配置实例-配置负载均衡

干货 | Nginx负载均衡原理及配置实例