This tutorial will guide you through setting up multiple domains and websites using Apache virtual hosts on an Ubuntu 18.04 server. During this process, you’ll learn how to serve different content to different visitors depending on which domains they are requesting.
For a more detailed version of this tutorial, with more explanations of each step, please refer to How To Set Up Apache Virtual Hosts on Ubuntu 18.04.
In order to complete this tutorial, you will need access to the following on an Ubuntu 18.04 server:
sudo apt install apache2
We’ll first make a directory structure that will hold the site data that we will be serving to visitors in our top-level Apache directory. We’ll be using example domain names, highlighted below. You should replace these with your actual domain names.
- sudo mkdir -p /var/www/example.com/public_html
- sudo mkdir -p /var/www/test.com/public_html
We should now change the permissions to our current non-root user to be able to modify the files.
- sudo chown -R $USER:$USER /var/www/example.com/public_html
- sudo chown -R $USER:$USER /var/www/test.com/public_html
Additionally, we’ll ensure that read access is permitted to the general web directory and all of the files and folders it contains so that pages can be served correctly.
- sudo chmod -R 755 /var/www
Let’s create some content to serve, we’ll make a demonstration index.html
page for each site. We can open up an index.html
file in a text editor for our first site, using nano for example.
- nano /var/www/example.com/public_html/index.html
Within this file, create a domain-specific HTML document, like the following:
<html>
<head>
<title>Welcome to Example.com!</title>
</head>
<body>
<h1>Success! The example.com virtual host is working!</h1>
</body>
</html>
Save and close the file, then copy this file to use as the basis for our second site:
- cp /var/www/example.com/public_html/index.html /var/www/test.com/public_html/index.html
Open the file and modify the relevant pieces of information:
- nano /var/www/test.com/public_html/index.html
<html>
<head>
<title>Welcome to Test.com!</title>
</head>
<body> <h1>Success! The test.com virtual host is working!</h1>
</body>
</html>
Save and close this file as well.
Apache comes with a default virtual host file called 000-default.conf
that we’ll use as a template. We’ll copy it over to create a virtual host file for each of our domains.
Start by copying the file for the first domain:
- sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/example.com.conf
Open the new file in your editor (we’re using nano below) with root privileges:
- sudo nano /etc/apache2/sites-available/example.com.conf
We will customize this file for our own domain. Modify the highlighted text below for your own circumstances.
<VirtualHost *:80>
ServerAdmin admin@example.com
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
At this point, save and close the file.
Now that we have our first virtual host file established, we can create our second one by copying that file and adjusting it as needed.
Start by copying it:
- sudo cp /etc/apache2/sites-available/example.com.conf /etc/apache2/sites-available/test.com.conf
Open the new file with root privileges in your editor:
- sudo nano /etc/apache2/sites-available/test.com.conf
You now need to modify all of the pieces of information to reference your second domain. The final file should look something like this, with highlighted text corresponding to your own relevant domain information.
<VirtualHost *:80>
ServerAdmin admin@test.com
ServerName test.com
ServerAlias www.test.com
DocumentRoot /var/www/test.com/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Save and close the file when you are finished.
With our virtual host files created, we must enable them. We’ll be using the a2ensite
tool to achieve this goal.
- sudo a2ensite example.com.conf
- sudo a2ensite test.com.conf
Next, disable the default site defined in 000-default.conf
:
- sudo a2dissite 000-default.conf
When you are finished, you need to restart Apache to make these changes take effect and use systemctl status
to verify the success of the restart.
- sudo systemctl restart apache2
Your server should now be set up to serve two websites.
If you haven’t been using actual domain names that you own to test this procedure and have been using some example domains instead, you can test your work by temporarily modifying the hosts
file on your local computer.
On a local Mac or Linux machine, type the following:
- sudo nano /etc/hosts
For a local Windows machine, find instructions on altering your hosts file here.
Using the domains used in this guide, and replacing your server IP for the your_server_IP
text, your file should look like this:
127.0.0.1 localhost
127.0.1.1 guest-desktop
your_server_IP example.com
your_server_IP test.com
Save and close the file. This will direct any requests for example.com
and test.com
on our computer and send them to our server.
Now that you have your virtual hosts configured, you can test your setup by going to the domains that you configured in your web browser:
http://example.com
You should see a page that looks like this:
You can also visit your second page and see the file you created for your second site.
http://test.com
If both of these sites work as expected, you’ve configured two virtual hosts on the same server.
If you adjusted your home computer’s hosts file, delete the lines you added.
Here are links to more additional guides related to this tutorial:
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
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!
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hi this helped me a lot to set the configuration and understand the Virtual config. Here is my query. I need to load all example.com directory for wild card URL like
How can I do it. I tried some links https://serverfault.com/questions/727055/redirect-all-subdomains-to-main-domain-inside-vhost unforntunatly this doesnt worked for me. I am on Ubuntu 20.04.1 LTS. Please help me… Thanks in advance
Thank you for your simple article , it helped me a lot
Doesn’t cover setting up SSL. The insecure web is deprecated, no tutorials should just cover port 80 anymore.
Hi Lisa!
Thank you for the article :)
I’m facing some problem here - I’m running Ubuntu 18.04 on Windows 10 (WSL2) for local development. I’ve followed your instructions in the article (I think I haven’t missed out on anything). I’ve created two websites - example.local and test.local
Now the problem is a. I can’t access example.local nor test.local (Chrome says the site can’t be reached) b. Accessing localhost shows me the page for example.local. When I changed the name of the example.local.conf file to zero.local.conf and restarted the server. That led to successfully serving the test.local page (when I try to access localhost).
Would you be able to help me with this?
Best, Saket