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

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.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • 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

  • Linux basic commands Linux
  • OPEN OFFICE
    How to Install Apache OpenOffice on Ubuntu  Linux
  • sdf
    Creating an offline local repository in Linux Linux
  • S3 Bucket 1
    How to delete AWS S3 Bucket and Objects via  AWS CLI from Linux AWS/Azure/OpenShift
  • Groovy
    How to install Groovy on Linux and Windows Configuration Management Tool
  • How to create edit save exit file
    Mastering Vim in Linux: How to Create, Edit, Save, and Quit Files Linux

More Related Articles

Linux basic commands Linux
OPEN OFFICE How to Install Apache OpenOffice on Ubuntu  Linux
sdf Creating an offline local repository in Linux Linux
S3 Bucket 1 How to delete AWS S3 Bucket and Objects via  AWS CLI from Linux AWS/Azure/OpenShift
Groovy How to install Groovy on Linux and Windows Configuration Management Tool
How to create edit save exit file Mastering Vim in Linux: How to Create, Edit, Save, and Quit Files 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

  • wingettool
    Install Applications with Winget CLI on Windows Windows Server
  • mgithub
    How to use Command-Line on Git Bash and GitHub Desktop to PUSH local code to GitHub Version Control System
  • cookies9
    How to remove third-party cookies from Microsoft Edge Windows
  • Syncing Files  and photos with Synology Drive
    Sync file and photos from iOS and Mac with Synology Drive Backup
  • Microaoft Edge
    Bing AI-Powered Copilot: How to install Microsoft Edge on macOS Network | Monitoring
  • skype
    Stop Apps from running automatically on MAC Mac
  • redirects3endpoint
    How to redirect requests for your bucket’s website endpoint to another bucket or domain AWS/Azure/OpenShift
  • unnamed
    How to disable Network (Wireless) UI from the Welcome screen 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,824 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

Active Directory AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Server 2016

Copyright © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.