hi jani
hatte grade mit dem exakt gleichen problem zu tun. (ebenfalls xampp)
Also ich hatte das customlog im virtualhost eintrag gelöscht und dann ging der apache wieder... und unter namedvirtualhost habe ich *:80 eingetragen.
und habe noch das modul:
LoadModule vhost_alias_module modules/mod_vhost_alias.so
in der httpd.conf aktiviert.
Dann hat es geklappt.
meine httpd-vhosts.conf:
Code:
#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "F:/Webdata/Apache1"
ServerName apache1.mydomain.ch
ServerAlias apache1.mydomain.ch
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "F:/Webdata/Apache2"
ServerName apache2.mydomain.ch
ServerAlias apache2.mydomain.ch
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
allow from all
</Directory>
Grüsse
Darkmind