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

Multiple authentication methods

From: Howard Vanfleet <vanfleetlh_at_ldschurch.org>
Date: 2006-06-21 23:50:44 CEST

I am trying to set up my Subversion server to be able to authenticate users
first through apaches AuthUserFile method

Example:
<Location /svn>
        Dav svn
        SVNParentPath /opt/ldssvn/svn
        AuthzSVNAccessFile /etc/apache2/access.list
        Require valid-user
        AuthType Basic
        AuthName "Apache Authentication"
        AuthUserFile /etc/apache2/user.list
        SSLRequireSSL
</Location>

and if this fails I want it to authenticate using LDAP

Example:
<Location /svn>
        DAV svn
        SVNParentPath /opt/ldssvn/svn
        AuthType Basic
        AuthName "LDAP Authentication"

        AuthLDAPUrl ldaps://<server name and port>/ou=people,o=WWR?cn SSL

        AuthLDAPBindDN cn=LDAP-Subversion,ou=NDA,o=WWR
        AuthLDAPBindPassword subversion

        AuthzLDAPAuthoritative off
        AuthBasicProvider ldap
        require valid-user

        AuthzSVNAccessFile /etc/apache2/access.list
        SSLRequireSSL
</Location>

Dose anyone have an example of how to set up the subversion.conf file to allow
this scenario?

thanks,
Howard

------------------------------------------------------------------------------

 
NOTICE: This email message is for the sole use of the
 intended recipient(s) and may contain confidential and
 privileged information. Any unauthorized review, use,
 disclosure or distribution is prohibited. If you are not the
 intended recipient, please contact the sender by reply email
 and destroy all copies of the original message.

------------------------------------------------------------------------------

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Jun 21 23:52:26 2006

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.