nginx配置遇到的坑(一)-----proxy_pass

2020-03-04  本文已影响0人  Jessiewu_e94b

第一种:

location /proxy/ {

proxy_pass http://127.0.0.1/;

}

代理到URL:http://127.0.0.1/test.php

第二种(相对于第一种,最后少一个 / )

location /proxy/ {

proxy_pass http://127.0.0.1;

}

代理到URL:http://127.0.0.1/proxy/test.php

第三种:

location /proxy/ {

proxy_pass http://127.0.0.1/aaa/;

}

代理到URL:http://127.0.0.1/aaa/test.php

第四种(相对于第三种,最后少一个 / )

location /proxy/ {

proxy_pass http://127.0.0.1/aaa;

}

代理到URL:http://127.0.0.1/aaa/proxy/test.php

# 当location为正则表达式时,proxy_pass 不能包含URI部分。本例中包含了"/"

location ~ /testd {

proxy_pass http://127.0.0.1:8801/;  # 记住,location为正则表达式时,不能这样写!!!

    }

上一篇下一篇

猜你喜欢

热点阅读