是否可以使用node.js服务器而不在URL中显示端口号。

时间:2015-05-30 16:18:16

标签: node.js apache vps

我在端口80上使用apache使用apache,但是想使用node.js作为子域,而地址栏中没有使用端口节点。

1 个答案:

答案 0 :(得分:1)

是的,有可能

在您的apache虚拟主机文件中配置以下内容:

 <VirtualHost *:80>
  ServerName subdomain.myapp.com

 ProxyRequests off

<Proxy *>
        Order allow,deny
        Allow from all
</Proxy>

ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
ProxyPreserveHost on
</VirtualHost>

你应该有 NameVirtualHost *:80