首页 > Web开发 > 详细

apache+svn+ldap集成

时间:2017-09-16 17:59:36      阅读:277      评论:0      收藏:0      [点我收藏+]

apache+svn搭建方式如下:http://www.cnblogs.com/uglyliu/p/6914056.html

SVN和ldap集成,我用的方式只需要更改 /etc/http/conf.d/subversion.conf

配置如下:

<Location /svn/>
        DAV svn
        SVNListParentPath on
        SVNParentPath /home/svndata
        AuthBasicAuthoritative on
        AuthType Basic
        AuthName "svn"
        AuthBasicProvider ldap
        AuthzLDAPAuthoritative    off
        AuthLDAPURL    "ldap://ldap ip:389/dc=自己设置,dc=com?uid?sub?(objectClass=*)"
        AuthLDAPBindDN "cn=manager,dc=自己设置,dc=com"
        AuthLDAPBindPassword "manager的密码"
        AuthzSVNAccessFile /etc/subversion/svn-authz.conf
        Require valid-user
</Location>

 

apache+svn+ldap集成

原文:http://www.cnblogs.com/uglyliu/p/7531833.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!