Hi,
I have basic authentication working for svn on apache 2.2.  When I try to 
switch it to digest authenticated it does not work.

Configuration with Digest Authentication:
<Location /svn>
            DAV svn
            SVNListParentPath on
            SVNParentPath C:\server\repos
            AuthType Digest
            AuthName “Repos”
            AuthDigestDomain /svn
            AuthUserFile  C:\test\ auth_file
            Require valid-user
</Location>

Error Log:
[Thu Mar 12 09:24:03 2009] [error] [client 79.180.232.71] Digest: user `user1' 
in realm `\x93Repos\x94' not found: /svn/root/proj/

I added user1 to the digest file with this command:
C:\test >htdigest -c svn_authd_file "Repos" user1
Adding password for user1 in realm ΓÇ£ReposΓÇ¥.
New password: ********
Re-type new password: ********

I tried it without the quotes around realm as well

Configuration with Basic Authentication:
<Location /svn>
            DAV svn
            SVNListParentPath on
            SVNParentPath C:\server\repos
            AuthType Basic
            AuthName “Repos”
            AuthUserFile  C:\test\auth_file
            Require valid-user
</Location>

Any help would be appreciated.

Thanks


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
   "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to