一.反向代理
1.1.upstream简介
nginx的upstream可以同时实现反向代理和负载均衡,目前upstream支持4种方式的分配
1、轮询(默认)
每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉,能自动剔除。
2、weight
指定轮询几率,weight和访问比率成正比,用于后端服务器性能不均的情况。
2、ip_hash
每个请求按访问ip的hash结果分配,这样每个访客固定访问一个后端服务器,可以解决session的问题。
3、fair(第三方)
按后端服务器的响应时间来分配请求,响应时间短的优先分配。
4、url_hash(第三方)
按访问url的hash结果来分配请求,使每个url定向到同一个后端服务器,后端服务器为缓存时比较有效。
负载均衡:
只需要在http中增加
upstream tgcluster {#定义负载均衡设备的Ip及设备状态
ip_hash;
server 127.0.0.1:9090 down;
server 127.0.0.1:8080 weight=2;
server 127.0.0.1:6060;
server 127.0.0.1:7070 backup;
}
在需要使用负载均衡的server中增加
proxy_pass http://tgcluster/;
每个设备的状态设置为:
1.down 表示单前的server暂时不参与负载
2.weight 默认为1.weight越大,负载的权重就越大。
3.max_fails :允许请求失败的次数默认为1.当超过最大次数时,返回proxy_next_upstream 模块定义的错误
4.fail_timeout:max_fails次失败后,暂停的时间。
5.backup: 其它所有的非backup机器down或者忙的时候,请求backup机器。所以这台机器压力会最轻。
1.2 实现反向代理实例
在 /etc/nginx/conf.d/目录下重新创建一个新文件proxy.conf,并做配置:
vim /etc/nginx/conf.d/proxy.conf
## Basic reverse proxy server ##
upstream apachephp {
server 1.1.1.1:80; #the ip and port of the background Apache
}
## Start www.nowamagic.net ##
server {
listen 80;
server_name www.111.com www.222.com;
# access_log logs/proxy.access.log;
error_log logs/proxy.error.log;
root html;
index index.html index.htm index.php index.do;
## send request back to apache ##
location / {
proxy_pass http://apachephp;
#Proxy Settings
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_max_temp_file_size 0;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
}
解释说明:
apachephp 定义一个模块,里面注明后台真实的apache的ip和port,并且下面配置虚拟主机server模块
的时候要用到。
server模块下的listen 80 代表nginx服务监听的端口。
server_name www.111.com www.222.com; 这里配置一些虚拟主机, 你的这些域名要直接指向nginx代理服务器的地址, 当你访问这些域名时,nginx代理就会实现转发,转发给 1.1.1.1:80 。
http://apachephp: 这里是引用刚才定义的apachephp 模块!
二.负载均衡
我感觉负载均衡和上面配置几乎一样,只不过在这个upstream模块中多增加几个真实的apache web服务器即可。
upstream apachephp {
server 1.1.1.1:80; #the ip and port of the background Apache
}
更详细的参数和配置请参考他人的博客!