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

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
When following this tutorial did you complete the section on creating and testing a sample application. This section included temporarily opening port 5000 and ensuring the app is returned. It sounds like the flask application itself is not responding when it is requested by nginx upstream so working from the bottom of the stack should be the best way to identify the issue.
Replace
``` uwsgi_pass unix:/home/jrm2k6/jeremydagorn-blog/jeremydagorn.sock;```
with
```uwsgi_pass unix:///home/jrm2k6/jeremydagorn-blog/jeremydagorn.sock;```
and restart Nginx. It might help you.