I have followed this step by step guide from 2016 to set up my droplet and domain.
how can i simply start a HTML page and start my own page and i want to know how to edit it later Url: https://www.digitalocean.com/community/questions/how-can-i-simply-start-a-html-page-and-start-my-own-page-and-i-want-to-know-how-to-edit-it-later
Unfortunately, I cannot reach my website using the browser.
I have followed all the steps above and my domain (from GoDaddy) is pointing to my Digital Ocean droplet (Ubuntu 18.04.3 (LTS) x64). For the domain configuration, I have followed this explanation.
The only thing I have done different is this:
I was wondering if I am missing anything and if the post above is still accurate after three years. Also, would you recommend anyway to troubleshoot this? Any help would be really appreciated.
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.
Thanks so much for your detailed answer @bobbyiliev .
I finally figured it out and solved it.
For future reference:
First, and after creating the droplet, I configured the server:
Initial Server Setup with Ubuntu 18.04 Url: https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-18-04
Then, I installed Nginx instead of apace, following this guide:
How To Install Nginx on Ubuntu 18.04 Url: https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-18-04
Only after that, I followed the steps detailed in this post:
how can i simply start a HTML page and start my own page and i want to know how to edit it later Url: https://www.digitalocean.com/community/questions/how-can-i-simply-start-a-html-page-and-start-my-own-page-and-i-want-to-know-how-to-edit-it-later
Hello,
You would need to make sure that you have a web server like Apache or Nginx installed.
For example if you decide to go with Apache, you could install it with the following command:
Then once Apache has been installed make sure that it is enabled so that if your Droplet gets rebooted Apache would start on boot:
Also make sure that Apache is started:
Once you have Apache up and running, then you could go ahead and upload your website to the
/var/www/html
folder as you mentioned.Another thing that you need to keep in mind is that your domain name’s A record needs to be pointing to your Droplet’s IP address. And also after each DNS change, it might take up to 48 hours for the DNS cache to clear over the Globe before you could see the changes.
Let me know if anything is unclear.
Regards, Bobby