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.
Hey there 👋
If the IP works but the domain shows ERR_CONNECTION_REFUSED, it’s likely an Nginx config issue, not DNS.
Make sure you’ve added a proper server block for your domain in Nginx, something like:
server {
server_name yourdomain.com;
root /path/to/your/app;
...
}
Also, make sure Nginx has been reloaded after changes:
sudo systemctl reload nginx
You can double-check if Nginx is listening with:
sudo netstat -tulnp | grep nginx
If you’d like, feel free to share your Nginx config here, happy to take a quick look.
- Bobby
Heya,
You can confirm your domain resolves to your Droplet’s IP:
dig yourdomain.com +short
It should return the correct IPv4 address. If not, the issue is DNS-related (even if propagation “seems” done).
Regard