On 8/31/05, Davide Bianchi <[EMAIL PROTECTED]> wrote:
> Bernard chan wrote:
> > 1) I edited /etc/apache2/sites-available/default as below:-
> >
> > <VirtualHost _default_ *:80>
> > <VirtualHost _default_ *:80>
> 
> You can have only ONE _default_ VHost. By definition the 'default'
> site is the one used when, for some reason, the server can't figure
> out which site is requested.

That is almost, but not quite accurate.  The _default_ virtual host is
used ONLY when httpd can't find a <VirtualHost> with a matching IP
address.  It is not used as the default name-based virtual host -- the
first listed virtual host is used for that.

Since the poster has NameVirtualHost *:80, the _default_ virtual host
will NEVER be used.

To fix the problem, you should simply be using <VirtualHost *:80> as
is outlined here:
http://httpd.apache.org/docs/2.0/vhosts/name-based.html#using

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to