linux KVM虚拟化技术实战与原理解析pdf下载
svn定义权限
转载请注明:谷谷点程序 » linux下svn定义权限的简单例子
anon-access = none auth-access = write password-db = passwd authz-db = authz realm = My Subversion Repository |
# User defined in group [groups] admin = boss, sysadmin phpteam = php1, php2, php3 rubyteam = ruby1, ruby2 # SVN root should only be access by boss and system admin [/] @admin = rw * = # Main web repository should only be access by boss and system admin, others cannot read/write at all # By specifying svn path, we need to list which user/group who can and cannot access [/web] @admin = rw * = # PHP project repository can only be access by php developer, boss and sys admin # By specifying svnrep: directive, we just need to list which user/group who can access # Others will automatically rejected [svnrep:/web/php] @phpteam = rw @admin = rw # Ruby project repository can only be access by Ruby developer, boss and sys admin # By specifying svnrep: directive, we just need to list which user/group who can access # Others will automatically rejected [svnrep:/web/ruby] @rubyteam = rw @admin = rw |
转载请注明:谷谷点程序 » linux下svn定义权限的简单例子