0%

nginx proxy 地址的问题

第一种:

1
2
3
location /proxy/ {
proxy_pass http://127.0.0.1/;
}

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

第二种:

1
2
3
location /proxy/ {
proxy_pass http://127.0.0.1; #少/
}

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

第三种:

1
2
3
location /proxy/ {
proxy_pass http://127.0.0.1/aaa/;
}

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

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

1
2
3
location /proxy/ {
proxy_pass http://127.0.0.1/aaa;
}

代理到URL:http://127.0.0.1/aaatest.html