Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form
Home » Linux » How to Configure Virtual Host for Apache HTTP Web Server to Host Several Domains on Ubuntu 20.04 LTS
  • Deploy static website to azure blog storage
    Deploy a Static Website to Azure Storage from VSCode AWS/Azure/OpenShift
  • How to Disable Automatic Opening of Previous files in Notepad on Windows 11
    How to Disable Automatic Opening of Previous Files in Notepad on Windows 11 Windows
  • Featured image 2
    Find and remove Malware with Microsoft Defender Offline Anti-Virus Solution
  • Docker Guide
    Pull and Deploy Nginx Container Images from Docker Hub AWS/Azure/OpenShift
  • physical
    Linux Machine: Is it Virtual or a Physical server Linux
  • hero activedirectory
    The following error occurred attempting to rename the computer Account already exists Windows Server
  • Turn bluetooth on and off
    Unable to Turn Bluetooth On or Off on Mac Mac
  • BANNER
    How to Install and Set Lively Wallpaper on Windows 11 Windows

How to Configure Virtual Host for Apache HTTP Web Server to Host Several Domains on Ubuntu 20.04 LTS

Posted on 21/03/202229/09/2023 Imoh Etuk By Imoh Etuk 2 Comments on How to Configure Virtual Host for Apache HTTP Web Server to Host Several Domains on Ubuntu 20.04 LTS
How to Configure Virtual Host for Apache HTTP Web Server to Host Several Domains on Ubuntu 20.04 LTS

In our previous article, we took look at how to install Apache HTTP Web Server on Ubuntu 20.04 LTS In this guide we will learn how to configure Apache Virtual Host to host several domains. When using the Apache web server, you can use virtual hosts (referred to as server blocks in Nginx) to hold the configuration files and run more than one domain from a single server. We will set up a domain called techdirectarchive.com but you will have to replace this with your own domain name.

You also be interested in the following guides: How to Install Jenkins Automation Server on Ubuntu 20.04 LTS, how to fix critical Veeam Backup and Replication 9.5, 10, and 11 vulnerabilities, how to deploy a React Application to AWS S3, how to set up and configure Route 53 for your Domain in AWS, how to use Command-Line on Git Bash and GitHub Desktop to PUSH local code to GitHub, how to fix Sudo: unknown uid 1000: who are you? Error on Ubuntu, and how to create Multiple Users and Set Password for each User in Linux.

On Ubuntu 20.04, Apache has only one server block enabled by default, which is set to serve contents from the /var/www/html directory as highlighted in the screenshot below. While this works well for a single website, if you want to host many websites, things can become unmanageable.

Apache directory file location
Apache Web Server Content directory

From the above, we will not change anything in this directory /var/www/html, instead we will create a new directory structure within /var/www for techdirectarchive_com domain, leaving the /var/www/html intact as the default directory to be served if a client request doesn’t match any other sites.

Prerequisite to configure Virtual Host for Apache:

To have a hands-on experience and follow along in this session, you need to have Ubuntu 20.04 LTS installed on your system with a regular user or non-root user with Sudo privileges configured on your server. You will also need a registered domain name from an authorized domain name registrar. Registering a domain name isn’t mandatory, especially when setting up Apache Virtual Host for testing or demos. However, in a real-time or production environment, it becomes essential. You can purchase a domain from Namecheap, Godaddy or any other domain and hosting company known to you. Additionally, make sure to properly configure basic firewall rules on your server to block non-essential ports. 

Once the above prerequisites are in place, sign in to your system to begin.

Step 1- Create New Directory

Let’s create the directory for techdirectarchive_com as follows:

sudo mkdir /var/www/techdirectarchive_com

Next, you need to assign ownership of the directory with the $USER environment variable:

sudo chown -R $User:$User /var/www/techdirectarchive_com

If you haven’t changed your umask setting, which determines default file permissions, the permissions of your web roots should be correct. Run the command below to verify correct permissions. This ensures the owner can read, write, and execute files, while groups and others have read and execute permissions only:

sudo chmod 755 -R /var/www/techdirectarchive_com

The next thing is to create a sample index.html page. You can use nano or any of your favourite editors, you can run something similar to this:

sudo nano /var/www/techdirectarchive_com/index.html
Sample index.html file
Sample index.html file

When finished, save and close the file.

For Apache to serve this content, it’s  necessary to create a virtual host file with the correct directives. Instead of altering the default configuration file located at /etc/apache2/sites-available/000-default.conf directly, we will make a new one at /etc/apache2/sites-available/techda.com.conf with this command:

sudo nano /etc/apache2/sites-available/techdirectarchive_com.conf

As shown in the screenshot below, create a configuration block, which is similar to the default Apache configuration block but adjusted for our new directory and domain name. Remember to use your own domain name instead of the generic one used here. When you’re done, save and close the file.

Configuration block for virtual Host on Apache
Configuration block for Virtual Host

We’ve changed the DocumentRoot to our new directory and the ServerAdmin to an email address that the techdirectarchive_com site administrator can access. We’ve also added two directives: ServerName, which specifies the base domain that this virtual host definition should match, and ServerAlias, which specifies additional names that should match as if they were the base name.

When you’re finished, save and close the file 

Next, let’s enable the file with the a2ensite tool, run this:

sudo a2ensite techdirectarchive_com.conf

After enabling the a2ensite utility for your domain, you need to restart Apache to activate the new configuration. Ignore the prompt until you’ve finished everything, then restart the server immediately.

Disable the default site defined in 000-default.conf:

sudo a2dissite 000-default.conf

It’s time, to  test for configuration errors by running:

sudo apache2ctl configtest

Testing for configuration errors should return “Syntax Ok” as an output:

Your configuration test should return OK
Syntax Ok

Restart Apache to implement your changes:

sudo systemctl restart apache2

Apache should now be serving your domain name. You can test this by navigating to http://yourdomainname.com, where you should see something like this:

You have successfully Configured Virtual Host for Apache
Apache HTTP Web Server

To add another domain name go ahead and repeat the steps by creating another directory in /var/www and configuring all others steps.

Congrats, you have successfully configure virtual host for Apache, you can now host several domains on the Apache Web Server instead of the usual one single directory /var/www/html provided for hosting a single domain by default.

Rate this post

Thank you for reading this post. Kindly share it with others.

  • Click to share on X (Opens in new window) X
  • Click to share on Reddit (Opens in new window) Reddit
  • Click to share on LinkedIn (Opens in new window) LinkedIn
  • Click to share on Facebook (Opens in new window) Facebook
  • Click to share on Pinterest (Opens in new window) Pinterest
  • Click to share on Tumblr (Opens in new window) Tumblr
  • Click to share on Telegram (Opens in new window) Telegram
  • Click to share on WhatsApp (Opens in new window) WhatsApp
  • Click to share on Pocket (Opens in new window) Pocket
  • Click to share on Mastodon (Opens in new window) Mastodon
  • Click to share on Bluesky (Opens in new window) Bluesky
  • Click to share on Threads (Opens in new window) Threads
  • Click to share on Nextdoor (Opens in new window) Nextdoor
Linux, Web Server Tags:sudo, Ubuntu 20.04 LTS, Virtual Host

Post navigation

Previous Post: How to Set Up and Configure a Squid Proxy Server
Next Post: How to install Let’s Encrypt on Apache Web Server

Related Posts

  • WhatsApp Image 2022 02 20 at 4
    How to use Postman for your POST Request Web Server
  • WAMP errors
    Apache errors associated with WAMP installation for TeamPass Web Server
  • Feature Image DNF vs APT
    What are the differences between dnf and apt package managers? Linux
  • featureunions
    How to Install Unison on Linux System Linux
  • tuning tomcat
    How to upgrade Apache Tomcat from One Version to another Web Server
  • feature photo terraform
    How to install Amazon RDS using Terraform Linux

More Related Articles

WhatsApp Image 2022 02 20 at 4 How to use Postman for your POST Request Web Server
WAMP errors Apache errors associated with WAMP installation for TeamPass Web Server
Feature Image DNF vs APT What are the differences between dnf and apt package managers? Linux
featureunions How to Install Unison on Linux System Linux
tuning tomcat How to upgrade Apache Tomcat from One Version to another Web Server
feature photo terraform How to install Amazon RDS using Terraform Linux

Comments (2) on “How to Configure Virtual Host for Apache HTTP Web Server to Host Several Domains on Ubuntu 20.04 LTS”

  1. Avatar photo Pedro Henrique says:
    12/04/2022 at 2:41 PM

    hello, this worked on the local machine. but how to access the site from another computer on the network? How to tell apache which site to access?
    thanks

    Log in to Reply
    1. E Imoh1 Imoh Etuk says:
      13/04/2022 at 12:05 PM

      Hi, @Pedro Thank you for your comment. You can access the site from another computer by using the device’s IP address within the LAN. With the unique IP of the device where the site is hosted, you can tell Apache which site to access. I hope this helps. Feel free to ask further questions if you need other clarifications. Cheer!

      Log in to Reply

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

sysadmin top30a

  • Deploy static website to azure blog storage
    Deploy a Static Website to Azure Storage from VSCode AWS/Azure/OpenShift
  • How to Disable Automatic Opening of Previous files in Notepad on Windows 11
    How to Disable Automatic Opening of Previous Files in Notepad on Windows 11 Windows
  • Featured image 2
    Find and remove Malware with Microsoft Defender Offline Anti-Virus Solution
  • Docker Guide
    Pull and Deploy Nginx Container Images from Docker Hub AWS/Azure/OpenShift
  • physical
    Linux Machine: Is it Virtual or a Physical server Linux
  • hero activedirectory
    The following error occurred attempting to rename the computer Account already exists Windows Server
  • Turn bluetooth on and off
    Unable to Turn Bluetooth On or Off on Mac Mac
  • BANNER
    How to Install and Set Lively Wallpaper on Windows 11 Windows

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,839 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.