Nginx

Nginx 多個網站背後的不同域路徑

  • June 17, 2013

是否可以將不同的路徑路由到不同的網站?

我得到了以下場景: 1 個具有 1 個 IP 的家庭伺服器,例如 192.168.178.30

在此伺服器上安裝了以下服務:

- Jira - http://IP:8080/
- Confluence - http://IP:8090/
- Stash - http://IP:7990/
- Some Nodejs websites - http://IP:8000/ to http://IP:8005/

現在我想隱藏埠,只用它們的名字呼叫服務:

- http://192.168.178.30/Jira
- http://192.168.178.30/Confluence 
- http://192.168.178.30/Stash 
- http://192.168.178.30/Node1 or something

您可以使用 nginx代理模組輕鬆完成此操作。官方文件有非常詳細的範例。

引用自:https://serverfault.com/questions/516295