Ok Hugo;
Below is a segment of my configuration, which completely relates to
virtual hosting. Mind you that the ipaddress is the same one used for
the realtime webserver, except it is bound to the default port: 80.
Good luck
Robert
# VirtualHost: If you want to maintain multiple domains/hostnames on
your
# machine you can setup VirtualHost containers for them.
# Please see the documentation at
<URL:http://www.apache.org/docs/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.
#
# If you want to use name-based virtual hosts you need to define at
# least one IP address (and port number) for them.
#
#NameVirtualHost 12.34.56.78:80
NameVirtualHost 192.168.168.103:88
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
#
#<VirtualHost ip.address.of.host.some_domain.com>
# ServerAdmin [EMAIL PROTECTED]
# DocumentRoot /www/docs/host.some_domain.com
# ServerName host.some_domain.com
# ErrorLog logs/host.some_domain.com-error_log
# CustomLog logs/host.some_domain.com-access_log common
#</VirtualHost>
<VirtualHost 192.168.168.103:88>
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /files1/www/Cyrus
ServerName www.xxxx.com
ErrorLog logs/www.xxxx.com-error_log
CustomLog logs/www.xxxx.com-access_log common
<Directory />
Options FollowSymLinks
AllowOverride all
</Directory>
<Directory "/files1/www/Cyrus/">
Options Indexes FollowSymLinks
AllowOverride all
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
> --
> Dr Hugo Bouckaert - Systems Administrator, Computer Science UWA
> Tel: +(61 8) 9380 2878 / Fax: +(61 8) 9380 1089
> Email: [EMAIL PROTECTED] / Web: http://www.cs.uwa.edu.au/~hugo