多种情况验证
第一种情况
proxy_pass结尾有/
代理后的实际地址:http://localhost:8080/login
location /api/ {
proxy_pass http://localhost:8080/;
proxy_set_header X-Real-IP $remote_addr;
}
第二种情况
proxy_pass结尾没有/
代理后的实际地址:http://localhost:8080/api/login
location /api/ {
proxy_pass http://localhost:8080;
proxy_set_header X-Real-IP $remote_addr;
}
第三种情况
proxy_pass最后有/web
代理后的实际地址:http://localhost:8080/weblogin
location /api/ {
proxy_pass http://localhost:8080/web;
proxy_set_header X-Real-IP $remote_addr;
}