How to Host Two Websites on One Server Apache

Hello Dev! In today’s digital age, businesses and individuals alike need to have an online presence in order to succeed. However, many people are hesitant to pay for two separate servers to host two websites. The good news is that it is possible to host two websites on one server using Apache, and in this article, we will show you how to do it step-by-step.

Prerequisites

Before we begin, there are a few things that you will need in order to successfully host two websites on one server. Firstly, you will need access to a server that is running Apache. You will also need to have root access to the server and a basic understanding of how to use the command line. Additionally, you will need to have two domain names that are pointing to the IP address of your server.

Step 1: Install Apache

The first step in hosting two websites on one server is to install Apache. If you already have Apache installed on your server, you can skip this step. If not, you can install it by running the following command:

Command
Description
sudo apt-get update
Updates the package list
sudo apt-get install apache2
Installs Apache

Once Apache is installed, you can check if it is running by going to your server’s IP address in a web browser. You should see the Apache default page if it is running.

Step 2: Create Virtual Hosts

The next step is to create virtual hosts for each website that you want to host on your server. A virtual host is a way to host multiple websites on one server by using different domain names. Here is how you can create virtual hosts:

  1. Create a directory for each website that you want to host. For example, /var/www/example.com/public_html and /var/www/example2.com/public_html.
  2. Create a configuration file for each website in the /etc/apache2/sites-available/ directory. For example, /etc/apache2/sites-available/example.com.conf and /etc/apache2/sites-available/example2.com.conf. The contents of each configuration file should look something like this:
Configuration File
<VirtualHost *:80>ServerAdmin webmaster@example.comServerName example.comServerAlias www.example.comDocumentRoot /var/www/example.com/public_htmlErrorLog ${APACHE_LOG_DIR}/error.logCustomLog ${APACHE_LOG_DIR}/access.log combined</VirtualHost>
<VirtualHost *:80>ServerAdmin webmaster@example2.comServerName example2.comServerAlias www.example2.comDocumentRoot /var/www/example2.com/public_htmlErrorLog ${APACHE_LOG_DIR}/error.logCustomLog ${APACHE_LOG_DIR}/access.log combined</VirtualHost>

Once you have created the configuration files, you can enable them by running the following command:

Command
Description
sudo a2ensite example.com.conf
Enables the example.com configuration file
sudo a2ensite example2.com.conf
Enables the example2.com configuration file
sudo systemctl reload apache2
Reloads Apache

Step 3: Configure DNS

The final step is to configure DNS for each domain name that you want to host on your server. You will need to add an A record for each domain name that points to the IP address of your server. Here is an example of what your DNS configuration might look like:

Domain Name
IP Address
example.com
192.168.1.1
example2.com
192.168.1.1

Once you have configured DNS, you should be able to access each website by going to its respective domain name in a web browser.

READ ALSO  The Ultimate Guide for Dev: Best Linux Dedicated Server Hosting

FAQs

Q: Can I host more than two websites on one server?

A: Yes, you can host as many websites as your server can handle. However, keep in mind that hosting too many websites on one server can slow down the performance of your websites.

Q: Do I need to create a separate virtual host for each subdomain?

A: No, you can create a separate virtual host for each subdomain if you want to, but you can also create a wildcard subdomain that points to the same virtual host. For example, instead of creating a separate virtual host for blog.example.com, you can create a wildcard subdomain that points to example.com.

Q: Can I use a different web server instead of Apache?

A: Yes, there are many other web servers that you can use to host multiple websites on one server, including Nginx and Lighttpd.

Q: Can I host websites with different programming languages on the same server?

A: Yes, you can host websites with different programming languages on the same server as long as the server has the necessary software and dependencies installed for each programming language.

Q: Can I host websites with different database systems on the same server?

A: Yes, you can host websites with different database systems on the same server as long as the server has the necessary software and dependencies installed for each database system.

Conclusion

Hosting two websites on one server using Apache is a great way to save money and increase efficiency. By following the steps outlined in this article, you can easily host multiple websites on one server and ensure that each website is running smoothly.