Mod-Proxy
Apache mod_proxy,如何將請求轉發到本地網路 ip(伺服器)
不知道如何為此配置 mod_proxy。
我有兩個域,一個目前執行良好。其次是綁定到同一個ip。
我需要將來自第二個域的請求轉發到本地網路中的另一台伺服器。
像那樣:
domain1.com => 192.168.1.101 domain2.com => 192.168.1.102
我應該使用什麼配置或指令?
謝謝 ;)
更新
<VirtualHost *:80> DocumentRoot "/opt/lampp/htdocs/domain1/public" ServerName www.domain1.com <Directory /> </Directory> ScriptAlias /cgi-bin/ "/opt/lampp/cgi-bin/" CustomLog /opt/lampp/logs/custom_apache.log common ErrorLog /opt/lampp/logs/error_apache.log </VirtualHost> <VirtualHost *:80> ServerName www.domain2.com ProxyRequests Off ProxyPreserveHost On <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://192.168.1.103:8080/ ProxyPassReverse / http://192.168.1.103:8080/ </VirtualHost>
它只是不會重定向到第二台伺服器。就是這樣。當我重新啟動 apache 時,它會說一些重疊的 80 埠。
[warn] _default_ VirtualHost overlap on port 80, the first has precedence
我想應該在 VirtualHost 旁邊更改一些東西,而不是 *(all),應該是域名?
可能這個執行緒有你的查詢的答案 https://stackoverflow.com/questions/664287/redirect-url-path-to-forward-to-tomcat-servlet-using-apache-mod-proxy
你需要在你的 virtualhosts 聲明之前取消註釋或指定 NameVirtualHost *:80 配置動詞,否則它只會使用一個容器。