Hi,
I have created a droplet using the Ubuntu dist with LAMP installed, I also installed webmin to manage my virtual hosts.
The virtual host looks like so
<VirtualHost *:80> DocumentRoot “/var/www/mysite” ServerName mysite.com ServerAlias www.mysite.com <Directory “/var/www/mysite”> allow from all AllowOverride All Options +Indexes </Directory> </VirtualHost>
I have also tried creating a vhost as ServerName www.mysite.com and an alias of mysite.com
I restart Apache after every change.
The DNS settings are correct but no matter which version of the vhost I use the website will not resolve the mysite.com url and it just hits the default Apache (Ubuntu) page.
My knowledge of Apache is limited, can anyone advise of any config changes / issues that may cause or resolve this?
Many thanks
Lee
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!
Hello, Use a virtual host like this:
<VirtualHost *:80>
ServerAdmin admin@example.com
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/mysite
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
This should work, if this doesnt work you can check the logs for any errors. But I think your problem isn’t with the VHOST. If your domain doesn’t resolve but gives you an error page this is usually being caused by your DNS settings. If you want to manage your domain at DO make sure you setup the proper ns1,ns2,ns3 nameservers to digitalocean.com. Then create A/CNAME records to handle your site.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.