You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Konstantin Kolinko <kn...@gmail.com> on 2009/03/18 03:15:38 UTC

Re: List of repositories - How can only view the list of repositories?

2009/3/17 Grigory <gr...@comita.ru>:
> Hello!
>
> I use svn 1.4.2 under apache2
> We need to see only list of repositories.
> Viewing a specific repository strictly defined users (groups)
> In dav_svn.authz i have:
> [/]
> * = r
> ...
> [repo1:/]
> a = r
> [repo2:/]
> b = rw
> [repo3:/]
> c = rw
>
> In my case, it turns out that everyone can read any repository.
> How can I limit access to the repository, if the rights are inherited from the root?
>

[repo1:/]
a = r
b =
[repo2:/]
a =
b = rw

May be *=  will work as well - I have not tried, and do not have 1.4.x
around to test it.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1344820

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].

RE: Re: List of repositories - How can only view the list of repositories?

Posted by Grigory <gr...@comita.ru>.
Error in previous message:
[/]
* = 
In this case, viewing the list of repositories will NOT be available to all users!
Unfortunately I did not have 3 repository. Their more than 30

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1346541

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].

RE: Re: List of repositories - How can only view the list of repositories?

Posted by we...@tigris.org.
[/]
* = 

In this case all users will not be able to view a list of repositories!

Thanks for your advice but I spent a lot of time to rectify in your example
Any other ideas?

> 2009/3/17 Grigory <gr...@comita.ru>:
> > Hello!
> >
> > I use svn 1.4.2 under apache2
> > We need to see only list of repositories.
> > Viewing a specific repository strictly defined users (groups)
> > In dav_svn.authz i have:
> > [/]
> > * = r
> > ...
> > [repo1:/]
> > a = r
> > [repo2:/]
> > b = rw
> > [repo3:/]
> > c = rw
> >
> > In my case, it turns out that everyone can read any repository.
> > How can I limit access to the repository, if the rights are inherited from the root?
> >
> 
> [repo1:/]
> a = r
> b =
> [repo2:/]
> a =
> b = rw
> 
> May be *=  will work as well - I have not tried, and do not have 1.4.x
> around to test it.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1345966

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].

RE: Re: List of repositories - How can only view the list of repositories?

Posted by Grigory <gr...@comita.ru>.
An example apache configuration:
    <Location /svn/>
        DAV svn
        SVNParentPath /usr/local/svnroot
        SVNListParentPath on
        AuthType Basic
        AuthName "Subversion Authorization"
        AuthUserFile /etc/apache2/dav_svn.passwd
        Require valid-user
        Satisfy Any
        AuthzSVNAccessFile /etc/apache2/dav_svn.authz
    </Location>

[/]
* = 
In this case, viewing the list of repositories will be available to all users!
Unfortunately I did not 3 repository and much more:) Therefore, setting permissions to each take a long time
Any other ideas ?

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1346505

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].