On Fri, Mar 14, 2014 at 10:12:07AM -0500, Matthew Hamilton wrote:
> I have read the Subversion book regarding the configuration of
> mod_authnz_svn and mod_dav_svn for apache as the Subversion server.
It's called 'mod_authz_svn'.
> I am making use of mod_authnz_ldap to restrict access to our repo
Below is my apache config for SVN:
httpd.conf:
# mod_dav_svn configuration
DAV svn
SVNParentPath /opt/web/subversion/repos
# mod_authn_core configuration
AuthType Basic
AuthName "Authorized Developers Only"
# mod_auth_basic
AuthBasicProvider ld
Matthew Hamilton writes:
> I would like to be able to define the groups based on ldap groups
>
> [groups]
> proj1-devs = CN=proj1_developers,ou=ldap,dc=mycorp,dc=com
> proj2-devs = CN=proj2_developers,ou=ldap,dc=mycorp,dc=com
>
> [proj1:/]
> proj1-devs = rw
> proj2-devs = r
>
> [proj2:/]
> proj1-
I have read the Subversion book regarding the configuration of
mod_authnz_svn and mod_dav_svn for apache as the Subversion server.
I am making use of mod_authnz_ldap to restrict access to our repositories
based on ldap-group membership and we are using Active Directory as our
LDAP server.
I want