Hello, i was wondering if it is possible to let people access subversion root directory trough apache and 'dav_svn' module. Now i can only access only repositories that are 1 level lover than root directory ("svn/game" "svn/something" but not "svn/").
My httpd.conf:
<Location /svn>
DAV svn
SVNParentPath C:/SVN
AuthzSVNAccessFile C:/SVN/users
Satisfy Any
Require valid-user
AuthType Basic
AuthName "Subversion repository"
AuthUserFile C:/SVN/svn-auth-file
</Location>
Now, when i try to access root directory it asks me for a user name and a password.
Help would be appreciated.
Thank you.