如果我将此添加到我的apache conf:
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location /node>
ProxyPass http://localhost:3001/
ProxyPassReverse http://localhost:3001/
</Location>
现在,当我转到... / node时,我会看到以下页面:
“欢迎来到socket.io。”
但我想要发生的事情是通过输入网站3001来查看该页面,但这不起作用。为什么会这样?
Addiitional:
服务器有一个私有IP,路由器在端口3000和3001上转发IP流量。我可以使用私有IP使用curl或wget加载页面,但不能使用公共IP加载页面。任何想法为什么会这样?