我在端口80上使用apache使用apache,但是想使用node.js作为子域,而地址栏中没有使用端口节点。
答案 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