Category: General

Ubuntu 14.04 vhost setup

New vhost for example.com

Make a folder for the domain:

/var/www/html/example.com

Create the vhost file:

vi /etc/apache2/sites-available/example.com.conf

Enter following code into the configuration file


    ServerAdmin [email protected]
    ServerName example.com
    ServerAlias www.example.com
    DocumentRoot /var/www/example.com
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

Enable the vhost:

a2ensite example.com.conf

Restart Apache:

service apache2 restart

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.