This is really part of the same question, but it involves both our Subversion repository and Jenkins.
We want to use our Windows Active Directory to log into Jenkins and as our permissioning scheme in Subversion. Subversion uses Apache httpd. First in Subversion: We have the following setup for the "mfxdomain": <Location /src> DAV svn SVNParentPath /opt/cm/svn_repos AuthType basic AuthName "MFX Repository" AuthBasicProvider ldap AuthzLDAPAuthoritative off AuthLDAPURL "ldap://mfxdomain.mycompany.com:3268/dc=mycompany,dc=com?sAMAccountName" NONE AuthLDAPBindDN "CN=svnuser,OU=Users,DC=mycompany,DC=com" AuthLDAPBindPassword "swordfish" Require valid-user </Location> This works great. Anyone in the mfxdomain is able to log in. However, many of our users are actually in the effdomain, so we need to verify a user is either in one of the two domains. How do I set this up? Do I need a new <location>, or do I double the AuthLDAP lines? In Jenkins, we use the active directory plugin to verify our logins. Is it possible to specify two Active Directory domains? And in both, how do I know if someone is in one domain or the other? Do they need to prefix their login with the domain? -- David Weintraub qazw...@gmail.com