Node.js with ssl - nginx
Node.js Deployment
Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
1. Sign up for Digital Ocean
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
2. Create a droplet and log in via ssh
I will be using the root user, but would suggest creating a new user
3. Install Node/NPM
4. Clone your project from Github
There are a few ways to get your files on to the server, I would suggest using Git
5. Install dependencies and test app
6. Setup PM2 process manager to keep your app running
You should now be able to access your app using your IP and port. Now we want to setup a firewall blocking that port and setup NGINX as a reverse proxy so we can access it directly using port 80 (http)
7. Setup ufw firewall
8. Install NGINX and configure
Add the following to the location part of the server block
You should now be able to visit your IP with no port (port 80) and see your app. Now let’s add a domain
9. Add domain in Digital Ocean
In Digital Ocean, go to networking and add a domain
Add an A record for @ and for www to your droplet
Register and/or setup domain from registrar
I prefer Namecheap for domains. Please use this affiliate link if you are going to use them https://namecheap.pxf.io/c/1299552/386170/5618
Choose “Custom nameservers” and add these 3
- ns1.digitalocean.com
- ns2.digitalocean.com
- ns3.digitalocean.com
It may take a bit to propogate
- Add SSL with LetsEncrypt
Now visit https://yourdomain.com and you should see your Node app