Hallo allerseits
Ich habe Probleme bei der Ausführung des VertualHosts von Apache2.
Ich habe die folgenden Einstellungen mit apache 2.0.43 und Win2000 Pro ausprobiert. Es ist ohne Probleme gelaufen.
Aber unter WinNT4.0 Server hatte ich Problem. Ich konnte die Seiten nicht mehr im Browser anschaun.
Könnte mir jmand helfen
danke im Voraus
Gruss Ramy
Die Einstellungen:
------------------
+++++++++++++++++++++++++++++BEGINN++++++++++++++++++++++++++
hosts
-----
127.0.0.1 localhost
192.168.0.9 www.ab.ch # Virtuelle adressen
192.168.0.9 www.xy.ch
+++++++++++++++++++++++++++++++++
httpd.conf
----------
Use name-based virtual hosting.
#NameVirtualHost *
NameVirtualHost 192.168.0.9
VirtualHost example:
Almost any Apache directive may go into a VirtualHost container.
The first VirtualHost section is used for requests without a known
server name.
#<VirtualHost *>
# ServerAdmin webmaster@dummy-host.example.com
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>
<VirtualHost www.ab.ch>
ServerName www.ab.ch
DocumentRoot "C:/Programme/Apache Group/Apache2/htdocs/ab/"
ErrorLog "C:/Programme/Apache Group/Apache2/htdocs/ab/logs/error_log"
</VirtualHost>
<VirtualHost www.xy.ch>
ServerName www.xy.ch
DocumentRoot "C:/Programme/Apache Group/Apache2/htdocs/xy/"
ErrorLog "C:/Programme/Apache Group/Apache2/htdocs/xy/logs/error_log"
</VirtualHost>
++++++++++++++++++++++++ENDE++++++++++++++++++++++++++++