You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Nick Christy <ni...@gmail.com> on 2006/05/02 14:41:35 UTC

authz question

Hi all,

Got 1.3.1 installed and am trying to setup authz on it.

I have the following repository:
svnrepo

Here is what my svnserve.conf file looks like:

> [general]
> anon-access = read
> auth-access = write
> password-db = passwd
> authz-db = authz
> realm = svnrepo
>


and my authz file (located in the svnrepo/conf directory)

[groups]
> phoenix = nchristy,cpagani,cshadle,spetti,dgalloway
> icc = afreeman,dstewart,nchristy
>
> [/test]
> @icc = rw
> * = rw
>
> [/phoenix]
> @phoenix = rw
> * = r
>
> [/ICC]
> nchristy = rw
>
> [/jacks group]
> jheigher = rw
> * = r
>



Here is my problem:

When I try to create a folder, check a file in, basically any type of write
command using TortoiseSVN on the folder test I get a Access Denied error.

Any ideas?

Thanks,

Nick