<VirtualHost *:80>
ServerName demopage.orbidirectory.com
# DocumentRoot can be set to your actual root folder or left as default
DocumentRoot /var/www/html
# Proxy configuration
ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
# Allow overrides if needed
<Directory "/var/www/html">
AllowOverride All
</Directory>
</VirtualHost>