proxy_pass http://localhost:8000/uri/; 1. request URI发送到server时,按如下方式处理: 如果proxy_pass指定的是uri,那么当一个请求发送到server,则用proxy_pass指定的uri替换请求匹配部分 location /name/ { proxy_pass http://127.0.0.1/remote/; } 1. 2. 3. proxy_pass没有指定URI,请求的URI就像跟客...