Configuring Subversion with Active Directory Authentication

    技术2022-05-19  22

    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>


    最新回复(0)