Hey I have followed this tutorial successfully: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-14-04
but my node app is yet to come up. When I ran curl http://APP_PRIVATE_IP_ADDRESS:8080 in the CLI i got my html file returned.
What can I do please? Regards
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!
It’s not clear exactly where your problem is located. Any further information that you can provide would help us figure out your issue.
That tutorial assumes that you are running two separate servers, a proxy server and an app server. You could simplify the set up by running the Nginx reverse proxy on the same server as the Node app. Essentially, all you would need to change is instead of using APP_PRIVATE_IP_ADDRESS use 127.0.0.1 This will serve your Node app on localhost, and then Nginx will proxy it to port 80 where it will be publically available.
For instance, this is what your Nginx configuration would look like:
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://127.0.0.1:8080;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
This comment has been deleted
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.