我想在 SubversionEdge 上为每个 repo 配置访问规则。
我的意思是在 httpd.conf 中使用AuthzSVNReposRelativeAccessFile = authz 指令来为每个 repo 设置访问文件,而不是为所有 repos 使用一个文件。
<Location /svn/>
DAV svn
SVNParentPath "/opt/csvn/data/repositories"
SVNReposName "CollabNet Subversion Repository"
<IfModule deflate_module>
SetOutputFilter DEFLATE
</IfModule>
AuthzSVNReposRelativeAccessFile "authz"
SVNListParentPath On
</Location>
但它不起作用,访问规则仍然使用一个文件。这里的任何人都有这样的配置经验,请帮助。谢谢。