Hi, I'm trying to make a local repository (protocol svn://, without apache) works with a password file with htpasswd entries. But my svn does not recognize the passwords added there. How can I configure svn to make it work?
Explaining better: I have a repository called *local_rep*, in whose conf files are: *svnserve.conf:* [general] anon-access = none auth-access = write password-db = local_rep_pass authz-db = authz *autz:* [groups] rootyy=default [/] @rootyy=rw *= *local_rep_pass:* default:$apr1$lHYdR...$R1WDuYILoJH.1WJpxL9d7/ in which $apr1$lHYdR...$R1WDuYILoJH.1WJpxL9d7/ represents the password * blablumbla* encrypted for user *default* using htpasswd. But when I try to checkout the repository, the password is not recognized. Regards.