微信自定義選單url預設80埠問題解決
阿新 • • 發佈:2019-01-09
微信自定義選單url預設80埠的,但是有些伺服器上可能配置了多個tomcat。或者是剛好你伺服器上80埠被佔用了。在這樣的情況下,我們可以通過如下方式解決:
接下了需要配置httpd.conf檔案。
假設你的微信自定義選單可信域名為:wechat.luo.com
應用名為:web_exception_project-0.0.1-SNAPSHOT
埠為:8080
可以在httpd.conf中新增如下內容:
ServerName 127.0.0.1
NameVirtualHost *:80
<VirtualHost *:80>
ServerName 127.0.0.1
ProxyRequests Off
AllowEncodedSlashes Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /web_exception_project-0.0.1-SNAPSHOT http://wechat.luo.com:8080/web_exception_project-0.0.1-SNAPSHOT
ProxyPassReverse /web_exception_project-0.0.1-SNAPSHOT http://wechat.luo.com:8080/web_exception_project-0.0.1-SNAPSHOT
</VirtualHost>
除了設定httpd.conf外,還需要在hosts檔案(一般在/etc目錄下)裡面新增對映:
你的伺服器內網ip wechat.luo.com
如博主的是:
10.75.201.53 wechat.luo.com