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.
Hello, @jonhzono
Could you also please make sure that your application is running/listening on the port as well? You can check this using netstat:
netstat -plunta | grep PORT
If UFW is disabled and you still can’t access your application then it might be something else that is preventing you from loading your application.
If you can see that the service is up and running on the specified port then you can check if the service is also visible from outside the droplet by using nmap:
nmap -PN DropletIP
https://www.digitalocean.com/community/tutorials/how-to-use-nmap-to-scan-for-open-ports-on-your-vps
Let me know how it goes.
Regards, Alex
Hi @jonhzono,
Have you figured out the issue? I’m running through the same problem. I tried:
Still no go. I get curl: (7) Failed to connect to 104.***.**.160 port 443: Connection refused when I’m on the same machine. But works from outside.