Re: Apache startup resolve problem
"Bergset" <sabergset@gmail.com> writes:
>Thanks for pointing this out though. I will change my configs to
><VirtualHost 192.168.1.1> or <VirtualHost *> (which suppose is much
>easier to maintain) in my eventual production setup.
Note also that
<VirtualHost 192.168.1.1>
Is something quite different from
<VirtualHost *>
The latter is used in case of named virtual hosting (you need to add a
NameVirtualHost directive too otherwise again, silently ignored by Apache).
The first one is used to bind your service to a specific IP address.
It is documented in Apache how they differ.
\Berry
|