location /web1 {
root /usr/share/nginx/html;
}
location /web1 {
root /usr/share/nginx/html/;
}
location /web1/ {
root /usr/share/nginx/html;
}
location /web1/ {
root /usr/share/nginx/html/;
}
curl localhost:80/web1
curl localhost:80/web1/
location /api {
proxy_pass http://10.10.4.5:8088; // proxy_pass末尾没有斜杠, 代理到10.10.4.5时, 会拼接路径, 访问本机的/api路径会代理到 http://10.10.4.5:8088/api
}
location /api {
proxy_pass http://10.10.4.5:8088/; // proxy_pass末尾有斜杠, 代理到10.10.4.5时, 不会拼接路径, 访问本机的/api路径会代理到 http://10.10.4.5:8088
}