zoukankan      html  css  js  c++  java
  • [nginx] location proxy_pass 有无反斜杠各种效果

    访问url不变:http://192.168.1.1/proxy/test.html

    1.location /proxy   proxy_pass http://127.0.0.1
      http://127.0.0.1/proxy/test.html
    2.location /proxy   proxy_pass http://127.0.0.1/
      http://127.0.0.1//test.html
    
    
    3.location /proxy/  proxy_pass http://127.0.0.1
      http://127.0.0.1/proxy/test.html
    4.location /proxy/  proxy_pass http://127.0.0.1/
      http://127.0.0.1/test.html
    
    
    5.location /proxy   proxy_pass http://127.0.0.1/abc
      http://127.0.0.1/abc/test.html
    6.location /proxy   proxy_pass http://127.0.0.1/abc/
      http://127.0.0.1/abc//test.html
    
    
    7.location /proxy/  proxy_pass http://127.0.0.1/abc
      http://127.0.0.1/abctest.html
    8.location /proxy/  proxy_pass http://127.0.0.1/abc/
      http://127.0.0.1/abc/test.html
    

    瞎总结一下:

    1.第2和第6实际的url会出现双斜杠,所以location匹配的时候,建议在URI最后加上斜杆;

    2.看了官方文档proxy_pass的例子,只看到示例第3和第8,即location的URI最后要有斜杠;proxy_pass如果有URI,最后也要有斜杠。

      其实location和proxy_pass的URI最后面有无斜杠都可以,只要遵循官方的规则即可;

      a.proxy_pass有URI,proxy_pass的URI与location替换;

      b.proxy_pass无URI,请求中的URI原封不动传递到后端server。

    3.个人建议,location的URI以斜杠结尾,proxy_pass若指定了URI,URI最后面也要跟上斜杠。

  • 相关阅读:
    在tmux中如何复制文本并粘贴到某处?
    linux下的用户密码文件/etc/shadow
    linux下openssl命令解析
    第 27 章 CSS 传统布局[下]
    第 27 章 CSS 传统布局[上]
    第 26 章 CSS3 动画效果
    第 25 章 CSS3 过渡效果
    第 24 章 CSS3 变形效果[下]
    第 23 章 CSS3 边框图片效果
    第 22 章 CSS3 渐变效果
  • 原文地址:https://www.cnblogs.com/hjfeng1988/p/15606611.html
Copyright © 2011-2022 走看看