I have installed Apache and Subversion on Windows. My config is:
<Location /svn>
DAV svn
SVNListParentPath on
SVNParentPath "d:\svn"
AuthzSVNAccessFile "d:\svn\svnaccess.conf"
AuthType Basic
AuthName "Subversion repository"
AuthUserFile "D:\svn\svn-auth-file"
Require valid-user
</Location>
and my svnaccess.conf is:
[/]
* = r
If i take off or comment the line:
AuthzSVNAccessFile "d:\svn\svnaccess.conf"
from apache everything works and I can log in with my user, but if i put the line back on it gives a connection reset error when I try access from browser (Google Chrome, Firefox or IE):
Error 101 (net::ERR_CONNECTION_RESET): Unknown error.
Anyone have a clue about why my AuthSVNAccessFile is not working?
Thanks in advance.