Apache Virtual Proxypass nodejs应用程序 - 空页

时间:2017-11-30 16:37:00

标签: node.js apache proxy reverse-proxy virtualhost

我正在为我的节点js应用程序运行带有proxypass的apache服务器。

这是我在虚拟主机中获得的内容:

ProxyRequests Off
<Proxy *>
    Order deny,allow
    Allow from all
</Proxy>
ProxyPass / http://127.0.0.1:3333/
ProxyPassReverse / htttp://127.0.0.1:3333/
<Location />
    Order allow,deny
    Allow from all
</Location>

基本上我想将每个请求重定向到我的nodejs应用程序,当我使用直接链接时它会起作用。

我的问题是当我尝试使用层应用程序(例如Postman)来访问它时,它不会返回我的html页面。我需要等级应用&amp;网站获取元标记在社交网络上分享(FB,TW,...)。

我的虚拟知识真的很弱,如果有人可以帮我解决这个问题,我真的很感激。

谢谢!

1 个答案:

答案 0 :(得分:0)

这应该可以正常使用

<VirtualHost *:80>
   ProxyPreserveHost On

   ProxyPass / http://127.0.0.1:3333/
   ProxyPassReverse / htttp://127.0.0.1:3333/
</VirtualHost>