nginx反向代理与负载均衡
反向代理
可通过一个端口,实现访问多个后端服务
配置nginx.conf
server {
listen 80;
server_name localhost;
location / {
root /home/web/data/nginx-80;
index index.html index.htm;
}
location ^~ /WeiXin/ {
proxy_connect_timeout 30;
proxy_send_timeout 30;
proxy_read_timeout 30;
proxy_pass http://192.168.2.179:8180/WeiXin/;
}
}
访问127.0.0.1:80/WeiXin/端口nginx反向代理将请求转发到http://192.168.2.179:8180/WeiXin/
负载均衡
关于nginx负载均衡配置的几个状态参数讲解。
down,表示当前的server暂时不参与负载均衡。
backup,预留的备份机器。当其他所有的非backup机器出现故障或者忙的时候,才会请求backup机器,因此这台机器的压力最轻。
max_fails,允许请求失败的次数,默认为1。当超过最大次数时,返回proxy_next_upstream 模块定义的错误。
fail_timeout,在经历了max_fails次失败后,暂停服务的时间。max_fails可以和fail_timeout一起使用。
配置nginx.conf
upstream test {
server 10.0.0.1:8080 weight=2 max_fails=2 fail_timeout=2;
server 10.0.0.2:8080 weight=2 max_fails=2 fail_timeout=2;
}
server{
location / {
proxy_connect_timeout 3;
proxy_send_timeout 30;
proxy_read_timeout 30;
proxy_pass http://test;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
扩展
nginx负载报400 错误
upstream配置:
upstream test_1{
server 127.0.0.1:8080;
}
原因:nginx中upstream后面的名称不能使用下滑线,Nginx不能识别。
解决:将test_1 改成test-1 即可
Nginx反向代理时tomcat日志获取真实IP
nginx配置增加如下
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
tomcat的server.xml配置修改如下
默认是
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
修改为
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt"
pattern="%{X-Real-IP}i %l %u %t "%r" %s %b" />
完成,此时去tomcat的localhost_access_log文件里验证结果。