Apache Question:
Download Questions PDF

How to set up a virtual host in Apache?

Apache Server Interview Question
Apache Server Interview Question

Answer:

apache provide two type of virtual hosting 1- ip based and
2- name based.
to configure name based your dns should work properly.
go to the /etc/httpd/conf/httpd.conf file and remove # from
the start of of Namevertualhost *:80
and than at the end of file write the content below

<VirtualHost "IP of your apache server":80>
ServerAdmin root@krishna.com
DocumentRoot /var/www/krishna/krishna.html
DirectoryIndex krishna.html
ServerName www.krishna.com
ErrorLog /home/apache/logs/error/hostedsites/error_log
TransferLog /home/apache/logs/access/hostedsites/access_log
</VirtualHost>
restart your httpd service by running the command
Service httpd restart or /etc/init.d/httpd restart

Download Apache Server Interview Questions And Answers PDF

Previous QuestionNext Question
How to check for the httpd.conf consistency and any
errors in it?
What is ServerType directive in Apache Server?