I have created a program with nodejs that works correctly in link but I want to "hide" the port (3000) .
I have been reading that I need a proxy server, so I configured apache in different ways but I can not achieve my goal.
For example, I have:
<VirtualHost ip:8443 ip:8080>
ServerName ejemplo.com
ServerAlias www.ejemplo.com
DocumentRoot /home/www/
ProxyPreserveHost On
ProxyPass /node http://ejemplo.com:3000/
ProxyPassReverse /node http://ejemplo.com:3000/
</VirtualHost>
HELP !!