Report this

What is the reason for this report?

Nodejs app loads in browser via ip + port but not domain + port. DNS set to DO servers in registrar account. A and CNAME are set. Help!

Posted on August 12, 2018

Using correct port (‘3000’) and A and CNAME set to domain and ‘www’ alias, respectively. IP + port loads with no problem.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

You need to setup apache web server as a reverse proxy for your nodejs web app so you can access it using the domain name, this is an example apache site for you to try it

<VirtualHost *:80>
  ServerName example.com
  ServerAlias   www.example.com
  ProxyPass "/" "http://localhost:3000"
  ErrorLog ${APACHE_LOG_DIR}/nodejs_error.log
  CustomLog ${APACHE_LOG_DIR}/nodejs_access.log combined
</VirtualHost>

Create a file called example.com.conf in /etc/apache2/sites-available/ with the above content, make sure to enable the proxy module and the new site with these commands

sudo a2enmod proxy
sudo a2ensite example.com.conf
sudo systemctl restart apache2

Now you can access your app using example.com as domain name.

Hope this helps

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.