Nginx的配置代理映射在location块里使用如:
location ~ /*
{
proxy_pass http://127.0.0.1:8080;
}
又或者:
location /
{
proxy_pass http://127.0.0.1:8080;
}
当需要对请求地址过滤后进行代理有几种情况需要注意,加上斜杠和没加斜杠会映射不同的路径
1. 假设用http://127.0.0.1/proxy/test/index.html 进行访问,会被代理到http://127.0.0.1:8080/test/index.html 。
location /proxy/ {
proxy_pass http://127.0.0.1:8080/;
}
2. 相比第一个在代理地址后少了斜杠,会被代理到http://127.0.0.1/proxy/test/index.html。
location /proxy/ {
proxy_pass http://127.0.0.1:8080;
}
3. 在代理地址后有其他路径指向,会被代理到http://127.0.0.1:81/abc/test/index.html。
location /proxy/ {
proxy_pass http://127.0.0.1:8080/abc/;
}
4. 相比第一个在代理地址后少了斜杠, 会被代理到http://127.0.0.1/abctest/index.html。
location /proxy/ {
proxy_pass http://127.0.0.1:8080/abc;
}
附:正则写法
location = / {
# 精确匹配 / ,主机名后面不能带任何字符串
[ configuration A ]
}
location / {
# 因为所有的地址都以 / 开头,所以这条规则将匹配到所有请求
# 但是正则和最长字符串会优先匹配
[ configuration B ]
}
location /documents/ {
# 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
# 只有后面的正则表达式没有匹配到时,这一条才会采用这一条
[ configuration C ]
}
location ~ /documents/Abc {
# 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
# 只有后面的正则表达式没有匹配到时,这一条才会采用这一条
[ configuration CC ]
}
location ^~ /images/ {
# 匹配任何以 /images/ 开头的地址,匹配符合以后,停止往下搜索正则,采用这一条。
[ configuration D ]
}
location ~* \.(gif|jpg|jpeg)$ {
# 匹配所有以 gif,jpg或jpeg 结尾的请求
# 然而,所有请求 /images/ 下的图片会被 config D 处理,因为 ^~ 到达不了这一条正则
[ configuration E ]
}
location /images/ {
# 字符匹配到 /images/,继续往下,会发现 ^~ 存在
[ configuration F ]
}
location /images/abc {
# 最长字符匹配到 /images/abc,继续往下,会发现 ^~ 存在
# F与G的放置顺序是没有关系的
[ configuration G ]
}
location ~ /images/abc/ {
# 只有去掉 config D 才有效:先最长匹配 config G 开头的地址,继续往下搜索,匹配到这一条正则,采用
[ configuration H ]
}
参考:https://segmentfault.com/a/1190000002797606#articleHeader1