码迷,mamicode.com
首页 > 其他好文 > 详细

nginx虚拟路径中proxy_pass对后端请求的影响

时间:2018-07-07 17:46:09      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:sub   uri   first   请求   指令   proxy   location   pad   ddl   

假设nginx中的配置是这样的:

server {

    listen 80;

    server_name x.x.x.x;

    . . . . . .

    location /subdir

    {

        proxy_pass http://y.y.y.y;

    }

}

那么,当用户请求http://x.x.x.x/subdir/other时,匹配到该区块,nginx反向代理到后端时会保留虚拟路径。nginx实际向后端发起的请求URL为http://y.y.y.y/subdir/other。

 

假设nginx中的配置是这样的:

server {

    listen 80;

    server_name x.x.x.x;

    . . . . . .

    location /subdir

    {

        proxy_pass http://y.y.y.y/;

    }

}

那么,当用户请求http://x.x.x.x/subdir/other时,匹配到该区块,由于proxy_pass中有指定后端URI路径,nginx代理请求到后端时不会保留虚拟路径。nginx实际向后端发起的请求URL为http://y.y.y.y//other。

 

假设nginx中的配置是这样的:

server {

    listen 80;

    server_name x.x.x.x;

    . . . . . .

    location /subdir

    {

        proxy_pass http://y.y.y.y/upstream_subdir;

    }

}

那么,当用户请求http://x.x.x.x/subdir/other时,匹配到该区块,由于proxy_pass中有指定后端URI路径,nginx代理请求到后端时不会保留虚拟路径。nginx实际向后端发起的请求URL为http://y.y.y.y/upstream_subdir/other。

 

综合上述三个示例可以发现,问题的关键就在于proxy_pass指令中是否有指定后端服务器的URI,这决定了nginx代理请求到后端时是否会保留location中的虚拟路径。

 

当将后端服务器写成upstream方式时,效果也是一样的。比如:

upstream backend {

    server y.y.y.y:80;

}

server {

    listen 80;

    server_name x.x.x.x;

    . . . . . .

    location /subdir

    {

        proxy_pass http://backend/upstream_subdir;

    }

}

当用户请求http://x.x.x.x/subdir/other时,nginx实际向后端发起的请求URL仍然为http://y.y.y.y/upstream_subdir/other。

nginx虚拟路径中proxy_pass对后端请求的影响

标签:sub   uri   first   请求   指令   proxy   location   pad   ddl   

原文地址:http://blog.51cto.com/techsnail/2138564

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!