当前位置 主页 > 服务器问题 > nginx问题汇总 >

    nginx proxy

    栏目:nginx问题汇总 时间:2018-11-06 16:22

    这篇文章主要给大家介绍了关于nginx proxy_pass反向代理配置中url后加不加/的区别,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。

    前言

    nginx作为web服务器一个重要的功能就是反向代理。nginx反向代理的指令不需要新增额外的模块,默认自带proxy_pass指令,只需要修改配置文件就可以实现反向代理。

    而在日常的web网站部署中,经常会用到nginx的proxy_pass反向代理,有一个配置需要弄清楚:配置proxy_pass时,当在后面的url加上了/,相当于是绝对根路径,则nginx不会把location中匹配的路径部分代理走;如果没有/,则会把匹配的路径部分也给代理走(这样配置可以参考这篇文章)。

    下面举个小实例说明下:

    centos7系统库中默认是没有nginx的rpm包的,所以我们自己需要先更新下rpm依赖库

    1)使用yum安装nginx需要包括Nginx的库,安装Nginx的库

    [root@localhost ~]# rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

    2)使用下面命令安装nginx

    [root@localhost ~]# yum install nginx

    3)nginx配置

    [root@localhost ~]# cd /etc/nginx/conf.d/[root@localhost conf.d]# cat test.confserver {listen 80;server_name localhost;location / {root /var/www/html;index index.html;}} [root@localhost conf.d]# cat /var/www/html/index.htmlthis is page of test!!!!

    4)启动Nginx

    [root@localhost ~]# service nginx start //或者使用 systemctl start nginx.service

    5)测试访问(103.110.186.23是192.168.1.23机器的外网ip)

    [root@localhost conf.d]# curl http://192.168.1.23this is page of test!!!!

    看看下面几种情况:分别用http://192.168.1.23/proxy/index.html进行访问测试

    为了方便测试,先在另一台机器192.168.1.5上部署一个8090端口的nginx,配置如下:

    [root@bastion-IDC ~]# cat /usr/local/nginx/conf/vhosts/haha.confserver {listen 8090;server_name localhost;location / {root /var/www/html;index index.html;}}[root@bastion-IDC ~]# cat /var/www/html/index.htmlthis is 192.168.1.5[root@bastion-IDC ~]# /usr/local/nginx/sbin/nginx -s reload

    测试访问(103.110.186.5是192.168.1.5的外网ip):

    [root@bastion-IDC ~]# curl http://192.168.1.5:8090this is 192.168.1.5


    192.168.1.23作为nginx反向代理机器,nginx配置如下:

    1)第一种情况:

    [root@localhost conf.d]# cat test.confserver {listen 80;server_name localhost;location / {root /var/www/html;index index.html;} location /proxy/ { proxy_pass http://192.168.1.5:8090/;}}

    这样,访问http://192.168.1.23/proxy/就会被代理到http://192.168.1.5:8090/。p匹配的proxy目录不需要存在根目录/var/www/html里面