Configuring Subversion with Active Directory Authentication

来源:互联网 发布:照片做成视频的软件 编辑:程序博客网 时间:2024/04/27 20:13

windows版 全文:

http://www.sublimesvn.com/blog/2009/02/configuring-subversion-with-active-directory-authentication/

 

 

Linux 版 全文 (强烈推荐仔细阅读,有大量的讨论各种问题的解决):

Apache and Subversion authentication with Microsoft Active Directory  

重点:

 

Once you are done, the entire <Location / svn> section should look like this:<Location /svn>
DAV svn
SVNParentPath C:/svn_repository
SVNListParentPath On
AuthzSVNAccessFile C:/svn_repository/access.txt
AuthzLDAPAuthoritative off
AuthType Basic
AuthBasicProvider ldap
AuthName "your.domain"
AuthLDAPBindDN "CN=account,CN=Users,DC=your,DC=domain"
AuthLDAPBindPassword "password"
AuthLDAPURL "ldap://your.domain/DC=your,DC=domain?sAMAccountName?sub?(objectClass=*)"
Require valid-user
</Location>

原创粉丝点击