We have already seen the apache2 installation if you want to check here for debian users and check here for ubuntu users.
Virtual Host refers to the practice of running more than one web site (such as www.company1.com and www.company2.com) on a single machine. Virtual hosts can be “IP-based”, meaning that you have a different IP address for every web site, or “name-based”, meaning that you have multiple names running on each IP address. The fact that they are running on the same physical server is not apparent to the end user.
Apache was one of the first servers to support IP-based virtual hosts right out of the box. Versions 1.1 and later of Apache support both IP-based and name-based virtual hosts (vhosts). The latter variant of virtual hosts is sometimes also called host-based or non-IP virtual hosts.
Basics Of Virtual Hosts
Using virtual hosts, host several domains with a single web server. In this way, save the costs and administration workload for separate servers for each domain. There are several options regarding virtual hosts
Name-based virtual hosts
IP-based virtual hosts
Operation of multiple instances of Apache on one machine
Name-Based Virtual Hosts
With name-based virtual hosts, one instance of Apache hosts several domains. You do not need to set up multiple IPs for a machine. This is the easiest, preferred alternative. Reasons against the use of name-based virtual hosts are covered in the Apache documentation.
Configure it directly by way of the configuration file /etc/apache2/ sites-available/filename(by default we have default name file take this as reference and create new file). To activate name-based virtual hosts, specify a suitable directive. NameVirtualHost *. * is sufficient to prompt Apache to accept all incoming requests. Subsequently, configure the individual hosts:
NameVirtualHost *
ServerName www.example.com
DocumentRoot /home/www/htdocs/example.com
ServerAdmin [email protected]
ErrorLog /var/log/apache2/www.example.com-error_log
CustomLog /var/log/apache2/www.example.com-access_log common
ServerName www.myothercompany.com
DocumentRoot /home/www/htdocs/myothercompany.com
ServerAdmin [email protected]
ErrorLog /var/log/apache2/www.myothercompany.com-error_log
CustomLog /var/log/apache2/www.myothercompany.com-access_log common
A VirtualHost entry must also be configured for the domain originally hosted on the server (www.example.com). In this example, the original domain and one additional domain (www.myothercompany.com) are hosted on the same server.
Just as in NameVirtualHost, a * is used in the VirtualHost directives. Apache uses the host field in the HTTP header to connect the request to the virtual host. The request is forwarded to the virtual host whose ServerName matches the host name specified in this field.
For the directives ErrorLog and CustomLog, the log files do not need to contain the domain name. Here, use a name of your choice.
ServerAdmin designates the e-mail address of the responsible person that can be contacted if problems arise. In the event of errors, Apache gives this address in the error messages it sends to clients.
IP-Based Virtual Hosts
This alternative requires the setup of multiple IPs for a machine. In this case, one instance of Apache hosts several domains, each of which is assigned a different IP. The following example shows how Apache can be configured to host the original IP (192.168.1.10) plus two additional domains on additional IPs (192.168.1.20 and 192.168.1.21). This particular example only works on an intranet, because IPs ranging from 192.168.0.0 to 192.168.255.0 are not routed on the Internet.
Configuring IP Aliasing
For Apache to host multiple IPs, the underlying machine must accept requests for multiple IPs. This is called multi-IP hosting. For this purpose, IP aliasing must be activated in the kernel.
Once the kernel has been configured for IP aliasing, the commands ifconfig and route can be used to set up additional IPs on the host. These commands must be executed as root. For the following example, it is assumed that the host already has its own IP, such as 192.168.1.10, which is assigned to the network device eth0.
Enter the command ifconfig to find out the IP of the host. Further IPs can be added with commands like the following:
/sbin/ifconfig eth0:0 192.168.1.20
/sbin/ifconfig eth0:1 192.168.1.21
All these IPs are assigned to the same physical network device (eth0).
Virtual Hosts with IPs
Once IP aliasing has been set up on the system or the host has been configured with several network cards, Apache can be configured. Specify a separate VirtualHost block for every virtual server:
ServerName www.myothercompany.com
DocumentRoot /home/www/htdocs/myothercompany.com
ServerAdmin [email protected]
ErrorLog /var/log/apache2/www.myothercompany.com-error_log
CustomLog /var/log/apache2/www.myothercompany.com-access_log common
ServerName www.anothercompany.com
DocumentRoot /home/www/htdocs/anothercompany.com
ServerAdmin [email protected]
ErrorLog /var/log/apache2/www.anothercompany.com-error_log
CustomLog /var/log/apache2/www.anothercompany.com-access_log common
VirtualHost directives are only specified for the additional domains. The original domain (www.example.com) is configured through its own settings (under DocumentRoot, etc.) outside the VirtualHost blocks.
Multiple Instances of Apache
With the above methods for providing virtual hosts, administrators of one domain can read the data of other domains. To segregate the individual domains, start several instances of Apache, each with its own settings for User, Group, and other directives in the configuration file.
In the configuration file, use the Listen directive to specify the IP handled by the respective Apache instance. For the above example, the directive for the first Apache instance would be:
Listen 192.168.1.10:80
For the other two instances
Listen 192.168.1.20:80
Listen 192.168.1.21:80
In Apache2 to configure virtual hosts there are two important files i.e
/etc/apache2/sites-available and /etc/apache2/sites-enabled/
We need to create symlink between these two folders for each virtual host or you can use a2ensite and a2dissite
a2ensite
This Will create the correct symlinks in sites-enabled to allow the site configured in sitefilename to be served
a2dissite
This Will remove the symlinks from sites-enabled so that the site configured in sitefilename will not be served
Example for name based virtual hosts
Apache 2.0, the default site is instead the first file (in alphabetical order) in the /etc/apache2/sites-enabled directory. After initial installation, there will be a symlink from 000-default in this directory to /etc/apache2/sites-available/default. As you can see from this, Apache 2.0 offers another level of abstraction in the Virtual Hosts by recommending putting the actual files in /etc/apache2/sites-available and then symlinking from there to /etc/apache2/sites-enabled. I would recommend following this convention, but it’s not mandatory. In our example above, we would create two files, /etc/apache2/sites-available/default and /etc/apache2/sites-available/example.com. Our /etc/apache2/sites-available/default file would look like this
NameVirtualHost *
ServerName incorrect.com
DocumentRoot /home/www/html/default
And our /etc/apache2/sites-available/example.com would look like this
NameVirtualHost *
ServerName www.example.com
ServerAlias example.com
DocumentRoot /home/www/html/example.com/html
CustomLog logs/www.example.com-access_log common
We would then create symlinks to the /etc/apache2/sites-enabled directory with the ln -s
#ln -s /etc/apache2/sites-available/example.com /etc/apache2/sites-enabled/example.com
or you can use the following command
#a2ensite example.com
Site www.example.com installed; run /etc/init.d/apache2 reload to enable.
Now you need to restart the apache web server using the following command
#/etc/init.d/apache2 restart
Now we have our Virtual Hosts configured, it’s time to test. To start Apache 2, type /etc/init.d/apache2 start and fire up a browser and head to www.example.com
Example for IP based virtual hosts
/etc/apache2/sites-available/example.com would look like this:
ServerName www.example.com
ServerAlias example.com
DocumentRoot /home/www/html/example.com/html
CustomLog logs/www.example.com-access_log common
We would then create symlinks to the /etc/apache2/sites-enabled directory with the ln -s
#ln -s /etc/apache2/sites-available/example.com /etc/apache2/sites-enabled/example.com
or you can use the following command
#a2ensite example.com
Site www.example.com installed; run /etc/init.d/apache2 reload to enable.
Now you need to restart the apache web server using the following command
#/etc/init.d/apache2 restart
Now we have our Virtual Hosts configured, it’s time to test.Fire up a browser and head to www.example.com to see if your web site is working or not.
Thank you for the great post.
Thanks this saved me a lot of time.. there isn’t a whole lot of debian resources it seems
hi thanks for the tutorial i have a problem lol
i have 2 websites and i want to host them on 2 server i would host them on one but it does not let the other site show all the pages
that’s why i would like to host one site one server how can i make site show from server A and site B to show from server B
let me say 2 servers running
Please help
thanks Emma
Am using Websphere application server6.1.0.35 and i installed IBM HTTP server6.1.0.0 and I installed Plugin6.1. please tell me what is the steps are required to configare in websphere application server and httpd.conf file. there is ay need to create virtualhost.
please provide the information
Regards
Chinna