Thursday, February 28, 2008

AuthzSVNAccessFile svnaccessfile.txt

#Subversion Configuration Handler

#Repository configuration
DAV svn
SVNListParentPath on
SVNParentPath D:\SVN

AuthName "Subversion repositories"
AuthzSVNAccessFile svnaccessfile.txt

# NT Domain Logins.
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIDomain
SSPIOfferBasic On

#HTpasswd logins.
Require valid-user




inside svnaccessfile.txt

[groups]
developers = domain\user1,domain\user2

#to allow everyone read access
[/] * = r
#allow all developers complete access
@developers = rw

#allow developers to access their projects
[Project1:/]
@developers = rw

No comments: