绝对路径. proxy_pass http://127.0.0.1:8080; 后面8080没有 “/”
server {
listen 80;
server_name www.test.com;
# 当访问 http://test.yeguxin.top/proxy/aaa/bbb.text时,nginx匹配到 /proxy/路径,把请求转发给127.0.0.1:8080服务.
# 实际请求代理服务器路径为 " 127.0.0.1:8080/proxy/aaa/bbb.text "
location /proxy/ {
proxy_pass http://127.0.0.1:8080;
}
}
相对路径. proxy_pass http://127.0.0.1:8080; 后面8080有 “/”
server {
listen 80;
server_name www.test.com;
# 当访问 http://test.yeguxin.top/proxy/aaa/bbb.text时,nginx匹配到 /proxy/路径,把请求转发给127.0.0.1:8080服务.
# 实际请求代理服务器路径为 " 127.0.0.1:8080/aaa/bbb.text "
location /proxy/ {
proxy_pass http://127.0.0.1:8080/;
}
}
proxy_pass http://127.0.0.1:8080/static; 后面static没有 “/”
server {
listen 80;
server_name www.test.com;
# 当访问 http://test.yeguxin.top/proxy/aaa/bbb.text时,nginx匹配到 /proxy/路径,把请求转发给127.0.0.1:8080服务.
# 实际请求代理服务器路径为 " 127.0.0.1:8080/staticaaa/bbb.text "
location /proxy/ {
proxy_pass http://127.0.0.1:8080/static;
}
}
proxy_pass http://127.0.0.1:8080/static; 后面static有 “/”
server {
listen 80;
server_name www.test.com;
# 当访问 http://test.yeguxin.top/proxy/aaa/bbb.text时,nginx匹配到 /proxy/路径,把请求转发给127.0.0.1:8080服务.
# 实际请求代理服务器路径为 " 127.0.0.1:8080/static/aaa/bbb.text "
location /proxy/ {
proxy_pass http://127.0.0.1:8080/static/;
}
}
评论 (0)