Stefan Bion: Apache / VirtualHost

Beitrag lesen

Hi,

[...] Fehlt noch was...?

Wenn der Servername richtig gesetzt ist, wahrscheinlich nur das "NameVirtualHost *".

Yeah, jetzt klappt's:

hosts

127.0.0.1       localhost
127.0.0.1       xyz
127.0.0.1       bla

httpd.conf

NameVirtualHost localhost

<VirtualHost localhost>
 ServerName xyz
 DocumentRoot C:/Projects/xyz/www
 ErrorLog C:/Projects/xyz/error.log
 CustomLog C:/Projects/xyz/access.log common
</VirtualHost>

<VirtualHost localhost>
 ServerName bla
 DocumentRoot C:/Projects/bla/www
 ErrorLog C:/Projects/bla/error.log
 CustomLog C:/Projects/bla/access.log common
</VirtualHost>

Den * mochte er nicht; dort mußte tatsächlich eswas stehen (entweder 127.0.0.1 oder localhost).

[Das nur noch der Vollständigkeit halber.]

Gruß,
Stefan