André Hänsel <[email protected]> wrote on 02/04/2013 01:08:59 PM:
> I am trying to deny a user access to a certain path in an SVN
repository.
[snip]
> This is my current authz-test file, which is unable to stop user "andre"
> from accessing the directory "test2" and its content:
>
> [/]
> * = rw
If you don't need anonymous access, try:
$authenticated = rw
> [/test2]
> andre =
> [/test2/]
> andre =
> [test/test2]
> andre =
> [/test/test2]
> andre =
> [test/test2/]
> andre =
> [/test/test2/]
> andre =
> [test:/test/test2]
> andre =
> [test/:/test2]
> andre =
> [test:/test2/]
> andre =
> [test/:/test2/]
> andre =
> [test:test2]
> andre =
> [test/:test2]
> andre =
> [test:test2/]
> andre =
> [test/:test2/]
> andre =
>
> When I comment the "* = rw" part, access to the repository is
immediately
> denied, so at least the file isn't being ignored completely. I am using
> Subversion 1.7.8.
>
> Regards,
> André
>