Report this

What is the reason for this report?

Adding Subdomains - Added VitualHosts and Restarted Apache, webpage not available?

Posted on June 27, 2014

I created a file called sub.domain.com.conf in /etc/apache2/sites-available. Then I added the below:

<VirtualHost *:80>
    ServerName sub.domain.com
    DocumentRoot /var/www/sub
    # ..any other config needed
    <Directory /var/www/sub>
        Order Allow,Deny
        Allow from all
    </Directory>
</VirtualHost>

And restarted apache. I can see that a sub.domain.com file has been generated in sites-enabled, but when I access sub.domain.com, the webpage is unavailable.

What did I do wrong?



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.

Is there any more information you could provide? Did you set up DNS records pointing that subdomain to the IP address? Are you seeing any errors in /var/log/apache2/error.log ?

Check out this article on how to set up Apache Virtual Hosts on Ubuntu 14.04.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.