Published Question
Hi all,
I'm trying to figure out how to get my Node server.js to run on my droplet with Let's Encrypt / nginx
It was working by just ssh-ing into the droplet, cd into the project folder (cloned from Github repo) and r...
Accepted Answer:
Hmmm all that sounds like it should work...
Just to be clear, this is what your nginx config should look like:
```
server {
listen 80;
servername mydomain.com www.mydomain.com;
return 301 https...
1
•
•
By
keithj0nes
Nginx
DigitalOcean
Node.js
Ubuntu 16.04