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.
I looked up your droplet and it appears you created it with the stock Ubuntu 14.04 x64 image which provides a barebones OS without a web server installed by default. Not to worry, you can get a web server up and running with just a couple commands. In putty, once you are connected, type the following:
apt-get update
apt-get install apache2
This will install a basic apache web server (more packages are needed to support things like php if you are not just hosting a static site, let me know if you are hosting something dynamic).
Then you can move your index.html into the directory /var/www/html with
mv index.html /var/www/html/index.html
and you should see your page when you navigate to your IP address in your browser. For your DNS, you will need to ensure that you have configured records in our DNS server which point to your droplet. This guide will walk you through this process.
Let me know if you have any other questions, I’m happy to help you get up and running :)
Hi,
Which web server application are you using to host your website? Are you using Apache or Nginx? In your DNS settings on DigitalOcean, are you connecting your IP address to your domain?