How do you set up a virtual host in Apache?

Answers were Sorted based on User's Feedback



How do you set up a virtual host in Apache? ..

Answer / abhay

<VirtualHost www.test.com>
ServerAdmin admin@test.com
DocumentRoot /home/apache/share/htdocs/hostedsites
ServerName www.test.com
ErrorLog /home/apache/logs/error/hostedsites/error_log
TransferLog /home/apache/logs/access/hostedsites/access_log
</VirtualHost>

Is This Answer Correct ?    9 Yes 1 No

How do you set up a virtual host in Apache? ..

Answer / krishna

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

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More Apache Interview Questions

How to find httpd.conf file if you don’t know installation location?

0 Answers  


What is systemd and systemctl?

0 Answers  


How do you check the version of the running apache web server?

0 Answers  


Explain about htpasswd?

0 Answers  


What did systemd replace?

0 Answers  






What is the default apache directory?

0 Answers  


Who developed apache?

0 Answers  


How to set up a virtual host in apache?

0 Answers  


What is the possible reason for a ‘connection reset by peer’ error?

0 Answers  


Is apache an open source?

0 Answers  


What tool do you use for log analysis?

0 Answers  


Does tomcat need apache?

0 Answers  


Categories