You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Paolo Casarini <pa...@casarini.org> on 2004/11/15 10:18:38 UTC

Password Mismatch authz_svn

Hi, 

 I use subversion 1.0.9 on apache2 2.0.52 that runs on a Debian Sarge Linux 
Box. Without the authz_svn module with the following configuration the Basic 
Authentication works correctly: 

<Location /svn>
 DAV svn
 SVNParentPath /var/repos 

 AuthType Basic
 AuthName "Subversion Repository"
 AuthUserFile /etc/apache2/dav_svn.passwd
 Require valid-user
</Location> 

When I modify dav_svn.conf to use th authz module, the authintication with 
the same users that works correctly before, now don't work. To use the authz 
modulo I use the following conf file. 

<Location /svn>
 DAV svn
 SVNParentPath /var/repos 

 AuthType Basic
 AuthName "Subversion Repository"
 AuthUserFile /etc/apache2/dav_svn.passwd
 AuthzSVNAccessFile /etc/apache2/dav_svn.authz
 Satisfy Any
 Require valid-user
</Location> 

The dav_svn_passwd is the same and with authz module loaded apache2 write 
Password Mismatch in the error.log. 

The dav_svn.authz file is like the following:
[group]
prbm-devel = paolo
dp-devel = paolo,davide 

[dp:/]
* =
@dp-devel = rw 

[prbm:/]
* = r
@prbm-devel = rw 

So, where is my fault? 

Thanx,
 Paolo.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Password Mismatch authz_svn

Posted by kf...@collab.net.
Please show us the exact series of commands and their outputs, from
before you added authz, and from after.  And show us the "Password
Mismatch" error from your error log.

Please also format your mail carefully, with newlines separating prose
from quoted text blocks.

Thanks,
-Karl

"Paolo Casarini" <pa...@casarini.org> writes:
> Hi, I use subversion 1.0.9 on apache2 2.0.52 that runs on a Debian
> Sarge Linux Box. Without the authz_svn module with the following
> configuration the Basic Authentication works correctly: <Location /svn>
>  DAV svn
>  SVNParentPath /var/repos AuthType Basic
>  AuthName "Subversion Repository"
>  AuthUserFile /etc/apache2/dav_svn.passwd
>  Require valid-user
> </Location> When I modify dav_svn.conf to use th authz module, the
> authintication with the same users that works correctly before, now
> don't work. To use the authz modulo I use the following conf
> file. <Location /svn>
>  DAV svn
>  SVNParentPath /var/repos AuthType Basic
>  AuthName "Subversion Repository"
>  AuthUserFile /etc/apache2/dav_svn.passwd
>  AuthzSVNAccessFile /etc/apache2/dav_svn.authz
>  Satisfy Any
>  Require valid-user
> </Location> The dav_svn_passwd is the same and with authz module
> loaded apache2 write Password Mismatch in the error.log. The
> dav_svn.authz file is like the following:
> [group]
> prbm-devel = paolo
> dp-devel = paolo,davide [dp:/]
> * =
> @dp-devel = rw [prbm:/]
> * = r
> @prbm-devel = rw So, where is my fault? Thanx,
>  Paolo.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org