You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by "Schroeder, Hartmut" <Ha...@plath.de> on 2012/01/11 16:00:41 UTC

path based authorization

Hello All!

We use Subversion 1.6.16 on MS Windows Server 2008.

We have a set of 22 repositories and use path based authorization for restricting user access. Apache is configured to accept user information via LDAP (MS Active Directory) and also local defined user.

For some repositories shall all user get read/write access (* = rw) and for some other repositories shall all but not a group of user shall have access (that group shall not even read).

How can I do that? I tried something with the ~ charcter but it doesn't work.

 

Regards

Hartmut

Re: path based authorization

Posted by Torsten Krah <tk...@fachschaft.imn.htwk-leipzig.de>.
Am Mittwoch, den 11.01.2012, 15:00 +0000 schrieb Schroeder, Hartmut:
> Hello All!
> 
> We use Subversion 1.6.16 on MS Windows Server 2008.
> 
> We have a set of 22 repositories and use path based authorization for
> restricting user access. Apache is configured to accept user
> information via LDAP (MS Active Directory) and also local defined
> user.
> 
> For some repositories shall all user get read/write access (* = rw)
> and for some other repositories shall all but not a group of user
> shall have access (that group shall not even read).
> 
> How can I do that? I tried something with the ~ charcter but it
> doesn't work. 

Try this one, e.g. if the group which should not have access is called
"mygroup" for a path called "/path" in repository "dev":

[dev:/path]
@dev = rw
@readers = r
@mygroup =

regards