首页 > 手机 > vivo > 浅谈nginx反向代理中神奇的斜线

浅谈nginx反向代理中神奇的斜线

来源:整理 时间:2022-02-12 16:29:23 编辑:飘云 手机版

nginx A配置:

location /foo/ {
  proxy_pass http://192.168.1.56/;
}

nginx B收到的请求://api

案例3

nginx A配置:

location /foo/ {
  proxy_pass http://192.168.1.56/;
}

nginx B收到的请求:/foo/api

案例4

nginx A配置:

location /foo/ {
  proxy_pass http://192.168.1.56/;
}

nginx B收到的请求:/foo/api

案例5

nginx A配置:

location /foo/ {
  proxy_pass http://192.168.1.56/bar/;
}

nginx B收到的请求:/bar/api

案例6

nginx A配置:

location /foo {
  proxy_pass http://192.168.1.56/bar/;
}
文章TAG:nginx反向代理斜线nginx斜线

最近更新