Re: VirtualHosts

2001-04-05 Thread Marcel Hicking
> > But when I used Listen, then it did not > > biring anything even my primary site www.abc.com. > > If I turned of Listen then my primary site www.abc.com > > comes up. Sure. If you set Listen to any IP, Apache *only* listens to *this* IP. If you leave Listen out, Apache defaults to listening to

Re: VirtualHosts

2001-04-04 Thread Marcel Hicking
> > But when I used Listen, then it did not > > biring anything even my primary site www.abc.com. > > If I turned of Listen then my primary site www.abc.com > > comes up. Sure. If you set Listen to any IP, Apache *only* listens to *this* IP. If you leave Listen out, Apache defaults to listening to

Re: VirtualHosts

2001-04-04 Thread Peter Billson
> But when I used Listen, then it did not > biring anything even my primary site www.abc.com. > If I turned of Listen then my primary site www.abc.com > comes up. > > Looks I am wandering somewhere near the solution. I believe the tag should look like to work right. Also the ServerName dire

Re: VirtualHosts

2001-04-04 Thread Y2KNET
Yes! I made a typing mistake, instead of writing 192.55.34.5, I wrote the other address. I tried the following for www.xyz.net: Listen 192.55.34.5:80 NameVirtualHost 192.55.34.5:80 DocumentRoot /var/www/xyz SeverName xyz.net ServerAlais www.xyz.net ... But when I used Listen, then it did

Re: VirtualHosts

2001-04-04 Thread Peter Billson
> But when I used Listen, then it did not > biring anything even my primary site www.abc.com. > If I turned of Listen then my primary site www.abc.com > comes up. > > Looks I am wandering somewhere near the solution. I believe the tag should look like to work right. Also the ServerName dir

Re: VirtualHosts

2001-04-04 Thread Y2KNET
Yes! I made a typing mistake, instead of writing 192.55.34.5, I wrote the other address. I tried the following for www.xyz.net: Listen 192.55.34.5:80 NameVirtualHost 192.55.34.5:80 DocumentRoot /var/www/xyz SeverName xyz.net ServerAlais www.xyz.net ... But when I used Listen, then it did

Re: VirtualHosts

2001-04-04 Thread Jeremy C. Reed
On Tue, 3 Apr 2001, Y2KNET wrote: > First one is primary which is, say abc.net > the second one is VirtualHost xyz.net. > ns1INA192.55.34.3 > www.abc.net.INCNAMEns1.abc.net. > xyz.netIN A192.55.34.5 > .. > www.xyz.net. IN CNAME

Re: VirtualHosts

2001-04-04 Thread Nathan E Norman
On Wed, Apr 04, 2001 at 12:54:51PM -0500, Nathan E Norman wrote: [ sorry to reply to myself ... first sign of instability I'm told ] > | > | ServerName www.abc.net > | DocumentRoot /var/www/xyz/ > | Uh, forget this section ... I looked at your CNAMEs and thought 192.55.34.5 was the IP of

Re: VirtualHosts

2001-04-04 Thread Jeremy C. Reed
On Tue, 3 Apr 2001, Y2KNET wrote: > First one is primary which is, say abc.net > the second one is VirtualHost xyz.net. > ns1INA192.55.34.3 > www.abc.net.INCNAMEns1.abc.net. > xyz.netIN A192.55.34.5 > .. > www.xyz.net. IN CNAM

Re: VirtualHosts

2001-04-04 Thread Nathan E Norman
On Tue, Apr 03, 2001 at 11:39:46PM -0500, Y2KNET wrote: > The dns files resides on server ns1.abc.net > the first dns file is abc.hosts and following is its > configuration: > > INNSns1.abc.net. > INNSns2.abc.net. > > ns1IN

Re: VirtualHosts

2001-04-04 Thread Nathan E Norman
On Wed, Apr 04, 2001 at 04:08:34PM +1000, Jeff Waugh wrote: > > > > Listen 192.55.34.5:80 > > NameVirtualHost 192.55.34.5:80 > > > > > > DocumentRoot /var/www/xyz > > ServerName www.xyz.net > > > > NameVirtualHost means that you're defining the virtual hosts by name. Change > the VirtualHost

Re: VirtualHosts

2001-04-04 Thread Nathan E Norman
On Wed, Apr 04, 2001 at 12:54:51PM -0500, Nathan E Norman wrote: [ sorry to reply to myself ... first sign of instability I'm told ] > | > | ServerName www.abc.net > | DocumentRoot /var/www/xyz/ > | Uh, forget this section ... I looked at your CNAMEs and thought 192.55.34.5 was the IP o

Re: VirtualHosts

2001-04-04 Thread Nathan E Norman
On Tue, Apr 03, 2001 at 11:39:46PM -0500, Y2KNET wrote: > The dns files resides on server ns1.abc.net > the first dns file is abc.hosts and following is its > configuration: > > INNSns1.abc.net. > INNSns2.abc.net. > > ns1IN

Re: VirtualHosts

2001-04-04 Thread Nathan E Norman
On Wed, Apr 04, 2001 at 04:08:34PM +1000, Jeff Waugh wrote: > > > > Listen 192.55.34.5:80 > > NameVirtualHost 192.55.34.5:80 > > > > > > DocumentRoot /var/www/xyz > > ServerName www.xyz.net > > > > NameVirtualHost means that you're defining the virtual hosts by name. Change > the VirtualHos

Re: VirtualHosts

2001-04-04 Thread Mailing List
Wednesday, 04 April, 2001 12:39 PM Subject: VirtualHosts > Thanks for everyone for suggestions. > > I have used Listen and VirtualHosts directives. > Let me show you my dns files for two sites: > > First one is primary which is, say abc.net > the second one is VirtualHost x

Re: VirtualHosts

2001-04-04 Thread Mailing List
: <[EMAIL PROTECTED]> Sent: Wednesday, 04 April, 2001 12:39 PM Subject: VirtualHosts > Thanks for everyone for suggestions. > > I have used Listen and VirtualHosts directives. > Let me show you my dns files for two sites: > > First one is primary which is, say abc.net > the

Re: VirtualHosts

2001-04-04 Thread Jeff Waugh
> Listen 192.55.34.5:80 > NameVirtualHost 192.55.34.5:80 > > > DocumentRoot /var/www/xyz > ServerName www.xyz.net > NameVirtualHost means that you're defining the virtual hosts by name. Change the VirtualHost line to read: And make sure you use: ServerName xyz.net ServerAlias www.xyz.net

VirtualHosts

2001-04-03 Thread Y2KNET
Thanks for everyone for suggestions. I have used Listen and VirtualHosts directives. Let me show you my dns files for two sites: First one is primary which is, say abc.net the second one is VirtualHost xyz.net. The dns files resides on server ns1.abc.net the first dns file is abc.hosts and

Re: VirtualHosts

2001-04-03 Thread Jeff Waugh
> Listen 192.55.34.5:80 > NameVirtualHost 192.55.34.5:80 > > > DocumentRoot /var/www/xyz > ServerName www.xyz.net > NameVirtualHost means that you're defining the virtual hosts by name. Change the VirtualHost line to read: And make sure you use: ServerName xyz.net ServerAlias www.xyz.ne

VirtualHosts

2001-04-03 Thread Y2KNET
Thanks for everyone for suggestions. I have used Listen and VirtualHosts directives. Let me show you my dns files for two sites: First one is primary which is, say abc.net the second one is VirtualHost xyz.net. The dns files resides on server ns1.abc.net the first dns file is abc.hosts and