Is this possible? I had troubles with SVN clients not being able to access the repository with the following error message:
Repository moved permanently to 'http://svn.example.com/test/'; please relocate
If I added the '/' to the end of the path I was trying to access, it just strips it off again, and shows the same error message. My configuration file looks like:
<VirtualHost *>
ServerName svn.example.com
# Normal VirtualHost stuff here
<Location /svn>
# Uncomment this to enable the repository
DAV svn
SVNParentPath /some/path/to/repositories
# Setup mod_authz_svn, etc, etc here
</Location>
</VirtualHost>
Note: This works. But if I change the Location to just /
it stops working again with the error above. Is it possible to use the root directory, or am I missing something here? Firefox displays the repository listing fine when serving the repositories out of the root.
As someone else pointed out, this only seems to be an issue inside named virtual hosts... Anyone have any smart ideas why?