首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

详解Nginx proxy_pass 使用

前言 日常不管是研发还是运维,都多少会使用Nginx服务,很多情况Nginx用于反向代理,那就离不开使用proxy_pass,有些同学会对 proxy_pass 转发代理时 后面url加 /、后面url...详解 客户端请求 URL https://172.16.1.1/hello/world.html 第一种场景 后面url加 / location /hello/ { proxy_pass http...://127.0.0.1/; } 结果:代理到URL:http://127.0.0.1/world.html 第二种场景 后面url没有 / location /hello/ { proxy_pass...127.0.0.1; } 结果:代理到URL:http://127.0.0.1/hello/world.html 第三种场景 后面url添加其它路由,并且最后添加 / location /hello/ { proxy_pass.../; } 结果:代理到URL:http://127.0.0.1/test/world.html 第四种场景 后面url添加其它路由,但最后没有添加 / location /hello/ { proxy_pass

2.1K10
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    nginx中proxy_pass的使用(alias和root使用)

    前面我们一起学习了location的匹配规则,如果还不了解的话可以参考我这边文章(nginx中location的使用),今天一起来学习nginx中proxy_pass的匹配过程,也是非常简单 proxy_pass...匹配主要分两种情况 1、proxy_pass代理的url后面只有ip(域名)+端口,其他什么都没有(包括”/”都不能有) 此时代理的路径需要把请求的url中ip+port后面的路径追加到proxy_pass...name=taolong”内容追加到proxy_pass的url后面 最终代理的路径为:http://123.25.95.148:10010/nginx/hello?...name=taolong 2、proxy_pass代理的url后面除了ip(域名)+端口,还有其他的内容 此时的匹配逻辑,就需要将请求中的未匹配到location的内容追加到proxy_pass的url...name=taolong proxy_pass http://123.25.95.148:10010/hello; } #此时上面输出的结果

    1.5K10

    Nginx proxy_pass后的url加不加的区别

    nginx配置proxy_pass,需要注意转发的路径配置: 第一种:proxy_pass后缀不加斜杠 location /abc/ { proxy_pass http://172.16.1.38...:8080; } 第二种:proxy_pass后缀加斜杠 location /abc/ { proxy_pass http://172.16.1.38:8081/;...} 上面两种配置,区别只在于proxy_pass转发的路径后是否带 / 针对情况1 :如果访问url = http://server/abc/test.jsp,则被nginx代理后,请求路径会便问...http://proxy_pass/abc/test.jsp,将test/ 作为根路径,请求test/路径下的资源 针对情况2 :如果访问url = http://server/abc/test.jsp...http://app/;解释:当我们访问http://IP/881/bxg/app/下面的资源(此时proxy_pass后面带斜杠),nginx也会帮我们跳转到app下面对应的IP+端口此时返回的url

    2.4K90
    领券