1.Disable the default Apache virtual host: sudo a2dissite 000-default.conf File: /etc/apache2/sites-available/fchshelp.net.conf ServerAdmin support@fchs.org ServerName fchshelp.net ServerAlias www.fchshelp.net DocumentRoot /var/www/fchshelp.net/public_html/ ErrorLog /var/www/fchshelp.net/logs/error.log CustomLog /var/www/fchshelp.net/logs/access.log combined 3.Create directories for your websites and websites’ logs, replacing example.com with your own domain information: sudo mkdir -p /var/www/fchshelp.net/public_html sudo mkdir /var/www/fchshelp.net/logs 4.Enable the site: sudo a2ensite example.com.conf 5.Restart Apache: sudo service apache2 restart