Page 1 of 1

Virtual hosts not working in 1.6.5

PostPosted: 28. December 2007 15:53
by gerry.tucker
Hi everyone,

I just upgraded to 1.6.5 and now none of my virtual hosts are working. I thought it may be a 1.6.5 thing so I uninstalled and reinstalled 1.6.4 but I'm still can't display my virtual hosts.

My HOSTS file looks like this:

127.0.0.1 localhost
127.0.0.1 tigers2008.local
127.0.0.1 sceg.local

And my http-vhosts file like this:

NameVirtualHost *:80

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:80>
DocumentRoot c:/xampp/htdocs/xampp
ServerName localhost
ErrorLog c:/logs/localerror.log
CustomLog c:/logs/localaccess.log combined
</VirtualHost>

<VirtualHost *:80>
DocumentRoot c:/xampp/htdocs/tigers2008
ServerName tigers2008.local
ErrorLog c:/logs/tigerserror.log
CustomLog c:/logs/tigersaccess.log combined
</VirtualHost>

<VirtualHost *:80>
DocumentRoot c:/xampp/htdocs/tigers2008
ServerName sceg.local
ErrorLog c:/logs/scegerror.log
CustomLog c:/logs/scegaccess.log combined
</VirtualHost>



All I'm getting now are HTTP 502 errors when I try to view tigers2008.local or sceg.local.

Nothing else has changed, what else could be wrong?

TIA,

Gerry