I am running an SVN host from my windows box, along with a few local development sites.
The problem I am having, when I have no virtual hosts everything works fine as everything directs explcitly.
When I have one virtual host (for convenience):
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.localsite.home
DocumentRoot "D:/ws/localsite/"
</VirtualHost>
It works fine for localsite.home, but now localhost doesnt correctly work, and everything is redirected to that localsite folder. It also means SVN stops working externally and locally. How do I fix this?