# The *:80 part must match the config of your existing virtual host(s), and
# a NameVirtualHost directive in your main config somewhere.
<VirtualHost *:80>
# This determines what requests get sent to this virtual host:
ServerName mynodeapp.com
# Proxy all requests to the port 3000 listener:
ProxyPass / http://127.0.0.1:3000/
# This handles the translation of the location header in 30x responses:
ProxyPassReverse / http://127.0.0.1:3000/
</VirtualHost>
Se a sua configuração existente não estiver usando hosts virtuais, você precisará de alguns outros ajustes primeiro - forneça mais detalhes sobre a configuração existente e nós podemos ajudar.