nginx服務器地址及端口:127.0.0.1:80
后端服務地址及端口:127.0.0.1:8080
測試URL:http://127.0.0.1:80/api/upload
一
nginx配置:
location /api/ {
proxy_pass http://127.0.0.1:8080/;
}
實際訪問:http://127.0.0.1:8080/upload
二
nginx配置:
location /api {
proxy_pass http://127.0.0.1:8080/;
}
實際訪問:http://127.0.0.1:8080//upload
三
nginx配置:
location /api/ {
proxy_pass http://127.0.0.1:8080;
}
實際訪問:http://127.0.0.1:8080/api/upload
四
nginx配置:
location /api {
proxy_pass http://127.0.0.1:8080;
}
實際訪問:http://127.0.0.1:8080/api/upload
五
nginx配置:
location /api/ {
proxy_pass http://127.0.0.1:8080/server/;
}
實際訪問:http://127.0.0.1:8080/server/upload
六
nginx配置:
location /api {
proxy_pass http://127.0.0.1:8080/server/;
}
實際訪問:http://127.0.0.1:8080/server//upload
七
nginx配置:
location /api/ {
proxy_pass http://127.0.0.1:8080/server;
}
實際訪問:http://127.0.0.1:8080/serverupload
八
nginx配置:
location /api {
proxy_pass http://127.0.0.1:8080/server;
}
實際訪問:http://127.0.0.1:8080/server/upload
總結
1.proxy_pass代理地址端口后有目錄(包括 / ),轉發后地址:代理地址+訪問URL目錄部分去除location匹配目錄
2.proxy_pass代理地址端口后無任何,轉發后地址:代理地址+訪問URL目錄部分