nginx 怎麼通過域名訪問8080埠(指定埠)
阿新 • • 發佈:2018-12-26
進入到nginx目錄下,開啟nginx.conf
http {
server {
listen 80;
server_name example.com;
location /test1 {
proxy_pass http://example.com:8080/test1;
}
location /test2 {
proxy_pass http://example.com:8081/test2;
}
location / {
proxy_pass http://example.com;
}
}
}
重新載入一下配置檔案
./nginx -s reload
最主要的地方就是配置好location的地址
當我們輸入域名之後加上/test1的時候,就會被nginx對映到我們域名:8080/test1路徑上去做請求.