nginx中配置proxy_pass详解,末尾带不带斜杠/的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx中配置proxy_pass详解,末尾带不带斜杠/的区别相关的知识,希望对你有一定的参考价值。

参考技术A

前言:网上查了很多文章,确实有很多帖子详细列出了四种情况,然后举例子说明它们的区别,我看了几个帖子后依旧很乱,而且没有说明理由,很难记住。我自己经过多次试验,终于弄明白了,其实很简单,只有两种情况。

先上结论,一句话概括为: proxy_pass 不带 uri 直接照搬,带 uri 则去掉 location 后拼接到 proxy_pass 上。 听不懂没关系,简短的描述是为了方便记忆,请往下看

其中, / , /api , /api/ , /api/user , /api/user/ 都叫 uri ,( 注意:单个的斜杠 / 也是 uri )。

把地址和端口一换,其他照搬。所以请求 http://localhost:8000/api/user/login 等同于请求 http://localhost:8001/api/user/login 。

请求 http://localhost:8000/api/user/login ,首先把请求中的 uri 去掉 location ,即 /api/user/login 去掉 /api/ 后得到 user/login ,然后:

这三种情况其实适用于同一条规则。

nginx location proxy_pass详解

在nginx中配置proxy_pass时,如果在proxy_pass后面的url加/,相当于是绝对根路径,则nginx不会把location中匹配的路径部分代理走;如果没有/,则会把匹配的路径部分给代理走。 

下面四种情况分别用http://106.12.74.123/abc/index.html进行访问。

# 第一种
location  /abc
    {
        proxy_pass http://106.12.74.123:83/;
        proxy_set_header Host   $host;
        proxy_set_header X-Real-IP      $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
 
# 结论:会被代理到http://106.12.74.123/index.html 这个url
 
 
 
# 第二种(相对于第一种,最后少一个 /)
location  /abc
    {
        proxy_pass http://106.12.74.123:83;
        proxy_set_header Host   $host;
        proxy_set_header X-Real-IP      $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
 
# 结论:会被代理到http://106.12.74.123/abc/index.html 这个url
 
 
 
第三种:
location  /abc
    {
        proxy_pass http://106.12.74.123:83/linux/;
        proxy_set_header Host   $host;
        proxy_set_header X-Real-IP      $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
 
# 结论:会被代理到http://106.12.74.123/linux/index.html 这个url。
 
 
 
# 第四种(相对于第三种,最后少一个 / ):
location  /abc
    {
        proxy_pass http://106.12.74.123:83/linux;
        proxy_set_header Host   $host;
        proxy_set_header X-Real-IP      $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
 
# 结论:会被代理到http://106.12.74.123/linuxindex.html 这个url

下面我们验证一下:

环境准备:nginx的配置如下

主配置文件:

server {
    listen       80;
    server_name  localhost;
 
    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;
 
  
    location  /abc
    {
        proxy_pass http://106.12.74.123:83/;
        proxy_set_header Host   $host;
        proxy_set_header X-Real-IP      $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}

副配置文件,上面是代理到83端口了,我们看一下83端口的配置为文件,之前做其他实验,现在我们就在这个上面简单修改下。

[root@master conf.d]# cat 83.conf 
server
{
   listen 83;
   server_name 106.127.74.123;
   root /usr/share/nginx/83;
}

查看静态文件地址:

[root@master nginx]# tree 83/
83/
├── abc
│   └── index.html
├── index.html
└── linux
    └── index.html
 
[root@master nginx]# cat 83/index.html 
83
 
[root@master nginx]# cat 83/abc/index.html 
83  abc
 
[root@master nginx]# cat 83/linux/index.html 
linux

第一种:当我们http://106.12.74.123/abc/index.html时候,页面出现的是83

第二种:当我们http://106.12.74.123/abc/index.html时候,页面出现的是83  abc的内容

第三种:当我们http://106.12.74.123/abc/index.html时候,页面出现的是linux的内容

第四种:当我们http://106.12.74.123/abc/index.html时候,页面出现的是404  因为83目录下并没有linxuindex.html的文件
————————————————
原文链接:https://blog.csdn.net/wyl9527/article/details/89671506

以上是关于nginx中配置proxy_pass详解,末尾带不带斜杠/的区别的主要内容,如果未能解决你的问题,请参考以下文章

nginx 配置proxy_pass URL末尾加与不加/(斜线)的区别

Nginx配置proxy_pass末尾有参数与无参数的区别

nginx location proxy_pass详解

nginx 之 proxy_pass详解

nginx 之 proxy_pass详解

nginx 之 proxy_pass详解