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.
Hi @Casulleres,
It seems like the services Nginx, Unicorn, PostgresSQL didn’t start properly. To check this SSH to your droplet,
ssh root@YourDropletIp
Once you are in see if everything is running on the needed ports:
netstat -tulpen
Now, if something doesn’t work right, I’ll recommend trying to restart them like so
service nginx restart
service unicron restart
service postgresql restart
Once this has been done the websites should be running as expected.
Regards, KDSys