码迷,mamicode.com
首页 > 其他好文 > 详细

nginx负载均衡精简配置实例

时间:2019-04-17 09:28:49      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:cal   ESS   listen   err   eve   http   log   0.11   bsp   

[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负载均衡精简配置实例

标签:cal   ESS   listen   err   eve   http   log   0.11   bsp   

原文地址:https://www.cnblogs.com/yyxianren/p/10721370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!