can we host different web sites on the same server
mihir maniar
Ranch Hand
Joined: Sep 09, 2003
Posts: 88
posted
0
can we have multiple domains on the same server .if yes then how
Anonymous
Ranch Hand
Joined: Nov 22, 2008
Posts: 18944
posted
0
on apache you can configure Virtual Hosts which are then referenced. <VirtualHost www.test1.com> ServerName test1 DocumentRoot /var/docroot/test1 DirectoryIndex default.html index.html index.html index.jsp </VirtualHost> for each domain create one entry.
subject: can we host different web sites on the same server