Nginx的proxy_pass簡單使用記錄

與之相對發表於2020-12-23

proxy_pass

nginx代理配置的四種情況

訪問url:http://127.0.0.1/test/index.html

情況一

location /test/ {
	proxy_pass http://127.0.0.1:8080;
}

最終地址為:http://127.0.0.1:8080/test/index.html

情況二

location /test/ {
	proxy_pass http://127.0.0.1:8080/;
}

最終地址為:http://127.0.0.1:8080/index.html

情況三

location /test/ {
	proxy_pass http://127.0.0.1:8080/api;
}

最終地址為:http://127.0.0.1:8080/apiindex.html

情況三

location /test/ {
	proxy_pass http://127.0.0.1:8080/api/;
}

最終地址為:http://127.0.0.1:8080/api/index.html

相關文章