Tuesday, November 25, 2014

How To Setup Apache Virtual Host Configuration (With Examples)


Using Apache Virtual Host, you can run several websites on the same server.
For example, I can run both "abc.com" and "xyz.com" on a single physical server that has one Apache webserver running on it.


Fig: Apache Virtual Host (Multiple websites, one Apache)

There are two types of Apache virtual host configurations: 1) IP-Based Virtual Host and 2) Name-based Virtual Host. Name-based virtual host is recommended for most scenarios.

IP-Based Virtual Host

In this configuration, when you are pointing two websites (with different ip-address) to the server that runs Apache, that physical server should have two different ip-address configured.
This means that the server should have two ethernet cards, each one of them configured to the ip-address of the corresponding website that Apache virtual host will be serving. So, this is not practical for most aspects, and you should not be using this.
In the following example, the server contains two NIC cards, one is configured with 192.168.101.1 ip-address for "abc.com", another is configured with 192.168.102.1 for "xyz.com". Both these ip-address are served by a single Apache webserver running on that server using IP-Based virtual host.
Fig: Apache IP-Based Virtual Host

Name-Based Virtual Host

In this configuration, when Apache webserver receives a request, it looks for the hostname in the HTTP header, and depending on the hostname, it servers different websites. This is very easy, as you need only one ip-address on that physical server; but, you update the DNS with multiple website names pointing to the same ip-address. For all practical purpose, you’ll be using only Name-based virtual host configuration.
In the following example, the server contains only one NIC card, which is configured with 192.168.101.1 ip-address. The DNS entry for both abc.com and xyz.com website points to 192.168.101.1 ip-address. When Apache recives a request, it looks for the hostname entry in the HTTP header, and serves the corresponding website.

Fig: Apache Name-Based Virtual Host

1. Uncomment httpd-vhosts.conf in httpd.conf

If you’ve installed Apache 2 from source, by default, the following line will be commented in the httpd.conf file. Uncomment this line.
# vi /usr/local/apache2/conf/httpd.conf
Include conf/extra/httpd-vhosts.conf

2. Setup virtual hosts

Modify the httpd-vhosts.conf as shown below to setup named-based virtual host setting for two hosts.
  • NameVirtualHost *:80 – Indicates that all the name-based virtual hosts will be listening on the default port 80
  • <VirtualHost *:80> </VirtualHost> – Enclose all the apache configuration parameters for each and every virtual host between these VirtualHost tags. Any apache directives can be used within the virtualhost container.
  • In the following example, we are setting up virtual host for abc.com and xyz.com listening on the same port 80. So, there will be two <VirtualHost *:80> </VirtualHost>, one for each website.
  • When you go to abc.com, the files under /usr/local/apache2/docs/abc will be served by Apache; and the access_log and error_log for this site will go under /usr/local/apache2/logs/abc
# vi /usr/local/apache2/conf/extra/httpd-vhosts.conf
NameVirtualHost *:80

<VirtualHost *:80>
    ServerAdmin admin@abc.com
    DocumentRoot "/usr/local/apache2/docs/abc"
    ServerName abc.com
    ServerAlias www.abc.com
    ErrorLog "logs/abc/error_log"
    CustomLog "logs/abc/access_log" common
</VirtualHost>

<VirtualHost *:80>
    ServerAdmin admin@xyz.com
    DocumentRoot "/usr/local/apache2/docs/xyz"
    ServerName xyz.com
    ServerAlias www.xyz.com
    ErrorLog "logs/xyz/error_log"
    CustomLog "logs/xyz/access_log" common
</VirtualHost>

3. Check VirtualHost Configuration Syntax

Verify virtual configuration syntax using “httpd -S” as shown below. When everything is setup properly, it just displays “Syntax OK”.
# /usr/local/apache2/bin/httpd -S
VirtualHost configuration:
Syntax OK
When something is not configured properly, it will display warning message, including “directory does not exit” message as shown below.
# /usr/local/apache2/bin/httpd -S
Warning: DocumentRoot [/usr/local/apache2/docs/xyz] does not exist
Warning: ErrorLog [/usr/local/apache2/logs/abc] does not exist
Syntax OK

4. Restart the Apache and test

# /usr/local/apache2/bin/apachectl restart
Now, when you go to abc.com (or www.abc.com), the apache will serve the files from /usr/local/apache2/docs/abc directory.
When you go to xyz.com (or www.xyz.com), the same apache running on the same server will serve the files from /usr/local/apache2/docs/xyz directory.
Just to reiterate, for the name-based virtual host to work properly, the DNS entry for both these websites should be pointing to the same external ip-address of the physical server where the Apache webserver is running.

No comments:

Post a Comment