On 7/17/07, Manuel Vacelet <manuel.vacelet@gmail.com> wrote:
> Actually I want to restrict the read possibility of the subversion
> repositories to a list of people (thanks to "Require user") and let
> the possibility to each repository to define its own rules (thanks to
> "AuthzSVNAccessFile"). But as soon as there is a '* = r' in the
> AuthzSVNAccessFile, the "Require user" is no longer taken in account
> (each repository can restrict access to its data but cannot "expose"
> it more). Note: it doesn't work even if I force "statisfy all".
Hi all,
Actually, it's not restricted to LDAP as with file based
authentication, I have the same behaviour:
----------------------------->8-----------------------------
<Location /svnroot/code>
DAV svn
SVNPath /var/lib/codex/svnroot/code
AuthType Basic
AuthName "Subversion Authorization"
AuthUserFile /etc/httpd/conf/htpasswd
Require user manuel
AuthzSVNAccessFile /var/lib/codex/svnroot/code/.SVNAccessFile
</Location>
----------------------------->8-----------------------------
With SVNAcessFile like:
----------------------------->8-----------------------------
[groups]
members=admin, manuel, laurent
[/]
* = r
@members=rw
----------------------------->8-----------------------------
Even with this configuration, I can browse my repository either with
'laurent' or 'admin' account :/
Can someone help me ?
-- Manuel
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Jul 18 11:09:37 2007