From: Brian Scanlan (singer at domain redbrick.dcu.ie)
Date: Fri 18 Feb 2000 - 12:02:22 GMT
On Fri, Feb 18, 2000 at 03:52:33AM -0800, Vinayak Risbud wrote:
> I am able to configure Apache web Server.
Great!
> My problem is I want to configure the SAME web server at two different
> ports. (say 80 and 88). if I type 192.168.1.116 then I should be
> able to see differnet web page. and if I type 192.168.1.116:88
> i should be able to see another web page
http://www.apache.org/docs/vhosts/index.html, specifically
http://www.apache.org/docs/vhosts/ip-based.html - This is called a "virtual
host", they work grand once you've set them up. A sample config file snippet
might read...
<VirtualHost www.moo.com>
ServerAdmin webmaster at domain mail.moo.com
DocumentRoot /web/moo/htdocs
ServerName www.moo.com
ErrorLog /web/moo/logs/error.log
</VirtualHost>
<VirtualHost www.blah.org>
ServerAdmin webmaster at domain mail.blah.org
DocumentRoot /web/blah/htdocs
ServerName www.blah.org
ErrorLog /web/blah/logs/error_log
</VirtualHost>
Brian.
This archive was generated by hypermail 2.1.6 : Thu 06 Feb 2003 - 13:05:27 GMT