我正在尝试使用ubantu和apache2服务器中的子域在同一台服务器上运行节点应用程序。我为子域创建了虚拟主机配置文件。
当我使用其他端口节点应用程序时,它的IP地址不是子域,但子域不能正常工作,但仍然指向其他应用程序使用的端口80。
<Directory /var/www/html/example.com/public_html>
Require all granted
</Directory>
<VirtualHost example.com:80>
ServerName example.com
ProxyPass / http://IPaddress:3000/ connectiontimeout=5
ServerAlias www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/example.com/public_html
ErrorLog /var/www/html/example.com/logs/error.log
CustomLog /var/www/html/example.com/logs/access.log combined
</VirtualHost>
任何人请提出可能的解决方案,以解决此问题。
谢谢