是否可以在 URL 中不显示端口号的情况下使用 node.js 服务器?
Is it possible to use node.js server without having the Port number appear in the URL.
我有一个 VPS 在端口 80 上使用 apache,但想将 node.js 用于子域,没有端口节点将使用出现在地址栏中。
有可能
在您的 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>
你应该有
名称虚拟主机 *:80
我有一个 VPS 在端口 80 上使用 apache,但想将 node.js 用于子域,没有端口节点将使用出现在地址栏中。
有可能
在您的 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>
你应该有 名称虚拟主机 *:80