Hi folks, I'm sure this is simple and I'm missing something straightforward, I'm new to this lark.
I have Apache 2.2 installed and working fine, I want to serve more than one site on the same server and single IP address. I can get it all working with one site fine, but if I add details for virtual hosts only the first listed site gets any traffic. Conf of directories and virtuals is as follows, with the actual address' changed. Any help gratefully received.
############### NAME ALL FOLDERS
<Directory "D:/Web Sites/Dir1">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "D:/Web Sites/Dir2">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
################ NAME ALL VIRTUALS
<VirtualHost *:80>
DocumentRoot "D:/Web Sites/Dir1"
ServerName "www.website1.co.uk"
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "D:/Web Sites/Dir2"
ServerName "www.website2.co.uk"
</VirtualHost>