I use viewvc (V1.1.22) along with svn (V1.8), and svn uses path-based svnserve access. Viewvc works great when the user has read access at the repository level. When the user does not have read access at the repository level, he throws an error, as shown below, although I refer to the full URL, including the allowed path:
URL: https://mysvn.com/viewvc/test-repo/branches/branch-A/dist
The root "test-repo" is unknown. If you think this is correct, re-check the configuration.
HTTP response status
404 Not Found
My auth file is as follows:
[groups]
test_group = user1, user2
[/] * =
[: Glob: test repository / branches / * / distance]
@test_group = r
If I add another rule that gives read access to the repository level, viewvc works fine.
[Test repository /]
@test_group = r
Is there a way to show viewvc to allow viewing of allowed folders, although access to the repository is limited? Any help appreciated.
source share