[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: LDAP for authentication

From: Josh Kuo <josh.kuo_at_prioritynetworks.net>
Date: 2004-08-12 06:08:00 CEST

Watch your apache log, usually in /var/log/httpd/access_log and
/var/log/httpd/error_log, it may tell you more.

For references, here is what I have to get my setup working. I am using
mod_ldap:

LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule ldap_module modules/mod_ldap.so
<Location /svn>
        DAV svn
        SVNParentPath /home/svn
        SVNAutoversioning on

        <LimitExcept GET PROPFIND OPTIONS REPORT>
                SetHandler ldap-status
                Order deny,allow
                Allow from all
                AuthLDAPEnabled on
                AuthLDAPURL ldap://ldap.mydomain.com/dc=mydomain,dc=com
                AuthLDAPAuthoritative on
                require valid-user
                AuthType Basic
                AuthName "Subversion Read-only Repository"
        </LimitExcept>
</Location>

-- 
Josh Kuo <josh.kuo@prioritynetworks.net>
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Aug 12 06:08:23 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.