Nginx反向代理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx反向代理相关的知识,希望对你有一定的参考价值。

nginx反向代理

1 问题


使用Nginx实现Web反向代理功能,实现如下功能:

后端Web服务器两台,可以使用httpd实现

Nginx采用轮询的方式调用后端Web服务器

两台Web服务器的权重要求设置为不同的值

最大失败次数为1,失败超时时间为30秒

2 方案


使用4台RHEL7虚拟机,其中一台作为Nginx代理服务器,该服务器需要配置两块网卡,IP地址分别为192.168.4.5和192.168.2.5,两台Web服务器IP地址分别为192.168.2.100和192.168.2.200。客户端测试主机IP地址为192.168.4.100。

3 步骤


实现此案例需要按照如下步骤进行。

步骤一:部署实施后端Web服务器


1)部署后端Web1服务器

后端Web服务器可以简单使用yum方式安装httpd实现Web服务,为了可以看出后端服务器的不同,可以将两台后端服务器的首页文档内容设置为不同的内容。

[[email protected] ~]# yum  -y  install  httpd

[[email protected] ~]# echo "192.168.2.100" > /var/www/html/index.html

[[email protected] ~]# systemctl restart httpd

2)部署后端Web2服务器

[[email protected] ~]# yum  -y  install  httpd

[[email protected] ~]# echo "192.168.2.200" > /var/www/html/index.html

[[email protected] ~]# systemctl restart httpd

步骤二:配置Nginx服务器,添加服务器池,实现反向代理功能


1)修改/usr/local/nginx/conf/nginx.conf配置文件

[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf

.. ..

http {

.. ..

upstream webserver {

                server 192.168.2.100 weight=1 max_fails=2 fail_timeout=10;

                server 192.168.2.200 weight=2 max_fails=2 fail_timeout=10;

        }

.. ..

server {

        listen        80;

        server_name  www.aa.com;

            location / {

            proxy_pass http://webserver;

        }

}

2)重启nginx服务

[[email protected] ~]# /usr/local/nginx/sbin/nginx –s reload

3)使用浏览器访问代理服务器测试轮询效果

[[email protected] ~]# curl http://192.168.4.5            //使用该命令多次访问查看效果

步骤二:配置upstream服务器集群池属性


1)设置失败次数,超时时间,权重

[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf

.. ..

http {

.. ..

upstream webserver {

                server 192.168.2.100 weight=1 max_fails=2 fail_timeout=10;

                server 192.168.2.200 weight=2 max_fails=2 fail_timeout=10;

        }

.. ..

server {

        listen        80;

        server_name  www.aa.com;

            location / {

            proxy_pass http://webserver;

        }

}

2)重启nginx服务

[[email protected] ~]# /usr/local/nginx/sbin/nginx –s reload

3)使用浏览器访问代理服务器测试轮询效果

[[email protected] ~]# curl http://192.168.4.5            //使用该命令多次访问查看效果

4)设置相同客户端访问相同Web服务器

[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf

.. ..

http {

.. ..

upstream webserver {

                 ip_hash;

                server 192.168.2.100 weight=1 max_fails=2 fail_timeout=10;

                server 192.168.2.200 weight=2 max_fails=2 fail_timeout=10;

        }

.. ..

server {

        listen        80;

        server_name  www.aa.com;

            location / {

            proxy_pass http://webserver;

        }

}

5)重启nginx服务

[[email protected] ~]# /usr/local/nginx/sbin/nginx –s reload

6)使用浏览器访问代理服务器测试轮询效果

[[email protected] ~]# curl http://192.168.4.5            //使用该命令多次访问查看效果


以上是关于Nginx反向代理的主要内容,如果未能解决你的问题,请参考以下文章

用nginx反向代理的问题?(详内)

Nginx简单粗暴的反向代理教程

nginx反向代理数据传输能提高数据响应么?

Nginx 最全操作——nginx反向代理(5)

Nginx 如何设置反向代理

nginx反向代理三种模式