I am using VirtualHosts to allow access to various domains and subdomians of my site on the same Apache server. Along the lines of:
<VirtualHost *:80>
DocumentRoot /var/www/site
ServerName example.com
</VirtualHost>
I want to have a specific subdomain pointing to a NodeJS server on the same server. I know I could use ProxyPass to forward to a different server, is there a similar way to do this with the same machine?
I assume I would have the Node server running on a port other than 80.