THanks for taking the time
here is my httpd-vhosts.conf but unfortunately it doesn't default to the first vhost as I expected
#
# 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:
# 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 *:800
#
# get the server name from the Host: header
UseCanonicalName Off
<VirtualHost *:800>
# ServerAdmin webmaster@eazi.it
DocumentRoot "d:/websites/new.eazi.it"
</VirtualHost>
# this log format can be split per-virtual-host based on the first field
LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon
CustomLog "|bin/rotatelogs -l logs/access.%Y.%m.%d.log 86400" vcommon
Errorlog "|bin rotatelogs -l logs/error.%Y.%m.%d.log 86400"
ErrorDocument 404 /404.php
# include the server name in the filenames used to satisfy requests
VirtualDocumentRoot "d:/websites/%1+/"
Martin Trew