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 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 mail.blah.org
DocumentRoot /web/blah/htdocs
ServerName www.blah.org
ErrorLog /web/blah/logs/error_log
</VirtualHost>
Brian.
Maintained by the ILUG website team. The aim of Linux.ie is to
support and help commercial and private users of Linux in Ireland. You can
display ILUG news in your own webpages, read backend
information to find out how. Networking services kindly provided by HEAnet, server kindly donated by
Dell. Linux is a trademark of Linus Torvalds,
used with permission. No penguins were harmed in the production or maintenance
of this highly praised website. Looking for the
Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!