原文:Nginx 中 proxy_pass 的作用以及注意事项
格式
proxy_pass 格式:proxy_pass URL
。
proxy_pass http://www.xxx.com/;
proxy_pass http://192.168.200.101:8080/uri;
proxy_pass unix:/tmp/www.sock;
注意
假设 Nginx 服务器的域名为www.xxx.com
,后端服务器为192.168.1.10
。
当请求http://www.xxx.com/aming/a.html
的时候,注意以下不同配置下访问的结果。
不以 / 结尾
location /aming/
{proxy_pass http://192.168.1.10;...
}
被代理的完整地址为:http://192.168.1.10/aming/a.html
。
总结:如果没有 /,则会把匹配的路径部分(location 后面 /aming/)也给代理走。
以 / 结尾
location /aming/
{proxy_pass http://192.168.1.10/;...
}
被代理的完整地址为:http://192.168.1.10/a.html
。
总结:当在后面的 url 加上了 /,相当于是绝对根路径,则 Nginx 不会把 location 中匹配的路径部分代理走。
以 xxx/ 结尾
location /aming/
{proxy_pass http://192.168.1.10/linux/;...
}
被代理的完整地址为:http://192.168.1.10/linux/a.html
。
总结:当在后面的 url 加上了 /,相当于是绝对根路径,则 Nginx 不会把 location 中匹配的路径部分代理走。
以 xxx 结尾
location /aming/
{proxy_pass http://192.168.1.10/linux;...
}
被代理的完整地址为:http://192.168.1.10/linuxa.html
。
总结:这种情况比较危险,一定要避免。
总结
为了方便记忆和规范配置,建议所有的 proxy_pass 后的 url 都以 / 结尾。