Question
Help me point domain to my droplet
I need help to connect my domain to my droplet:
I have installed apache on my ubuntu 14.04.2 droplet. Its running fine on http://188.226.136.142/
I have a domain skovstedconsulting.dk pointed to ns1.digitalocean.com, ns2.digitalocean.com and ns3.digitalocean.com
I made the change 12 hours ago
I have followed this tutorial without any luck: https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts
In /etc/apache2/sites-enabled I have the following:
<VirtualHost *:80>
ServerAdmin krestensb@gmail.com
ServerName skovstedconsulting.dk
ServerAlias www.skovstedconsulting.dk
DocumentRoot /var/www/skovstedconsulting/html
ErrorLog ${APACHELOGDIR}/error.log
CustomLog ${APACHELOGDIR}/access.log combined
</VirtualHost>
and in /var/www/skovstedconsulting/html i have a file index.html
Now I should see my index.html when looking at www.skovstedconsulting.dk, but I can’t load the page.
Any help or hints would be very much appreciated.
Best regards Kresten
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.
×