博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx负载均衡
阅读量:6356 次
发布时间:2019-06-23

本文共 1110 字,大约阅读时间需要 3 分钟。

  hot3.png

下面都是在http{}里面进行配置

第一种配置:加权轮询,按服务器的性能给予权重

#负责压缩数据流gzip  on;  gzip_min_length   1000;  gzip_types        text/plain text/css application/x-javascript;#设定负载均衡的服务器列表#weigth参数表示权值,权值越高被分配到的几率越大upstream hello{    server 192.168.68.43:8080 weight=1;    server 192.168.68.45:8080 weight=1;            }   server {    #侦听的80端口    listen       80;    server_name  localhost;    #设定查看Nginx状态的地址    location /nginxstatus{         stub_status on;         access_log on;         auth_basic "nginxstatus";         auth_basic_user_file htpasswd;    }    #匹配以jsp结尾的,tomcat的网页文件是以jsp结尾    location / {        index index.jsp;        proxy_pass   http://hello;    #在这里设置一个代理,和upstream的名字一样            }}

第二种配置:ip_hash轮询方法,不可给服务器加权重

upstream lb {	server 192.168.196.130 fail_timeout=20s;	server 192.168.196.132 fail_timeout=20s;	ip_hash;} server {	 listen 80;	 server_name safexjt.com www.safexjt.com;	 index index.html index.htm index.php;	 location / {		 proxy_pass http://lb;		 proxy_next_upstream http_500 http_502 http_503 error timeout invalid_header;		 include proxy.conf;	 } }

转载于:https://my.oschina.net/qqlet/blog/1204452

你可能感兴趣的文章
使用ntpdate更新系统时间
查看>>
Android M 特性 Doze and App Standby模式详解
查看>>
IE FF(火狐) line-height兼容详解
查看>>
谷歌Pixel 3吸引三星用户, 但未动摇iPhone地位
查看>>
VUE中使用vuex,cookie,全局变量(少代码示例)
查看>>
grep -w 的解析_学习笔记
查看>>
TX Text Control文字处理教程(3)打印操作
查看>>
CENTOS 7 如何修改IP地址为静态!
查看>>
MyCat分片算法学习(纯转)
查看>>
IO Foundation 3 -文件解析器 FileParser
查看>>
linux学习经验之谈
查看>>
mysqld_multi实现多主一从复制
查看>>
中介模式
查看>>
JS中将变量转为字符串
查看>>
servlet笔记
查看>>
JVM(五)垃圾回收器的前世今生
查看>>
Spring Boot 自动配置之@EnableAutoConfiguration
查看>>
web前端笔记
查看>>
finally知识讲解
查看>>
Matplotlib绘图与可视化
查看>>