In your **svn\repos\test\conf** folder you will find 2 files **authz** and **passwd** these are the 2 you need to adjust.

In the **passwd** file you need to add some username and passwords. I assume you have already done this since you have people using it

    [users]
    User1=password1
    User2=password2

Then you want to assign permissions accordingly with the **authz** file :

Create the conceptual groups you want, and add people to it

    [groups]
    allaccess = user1
    someacces = user2

Then choose what access they have from both the permissions and projec level

So lets give our all access guys all access from the root

    [/]
    @allacces = rw


But only give our someaccess guys only read access to some lower level project :

    [/someproject]
    @someaccess = r

You will also find some simple documentation in the **authz** and **passwd** files.