Archive

Posts Tagged ‘LDAP’

Apache + SVN + LDAP

June 6th, 2009 No comments

Just because I always forget:

<VirtualHost 192.168.1.34:7000>
    <Location />

        DAV svn
        SVNPath /data/svn

        SVNReposName    "Subversion"
        AuthName        "Authenticate for Subversion"

        AuthType Basic
        AuthBasicProvider ldap
        AuthzLDAPAuthoritative on
        AuthLDAPUrl ldap://192.168.1.33/dc=kerneldump,dc=org?uid
        Require ldap-group cn=svnusers,ou=Group,dc=kerneldump,dc=org
        AuthLDAPGroupAttribute memberUid
        AuthLDAPGroupAttributeIsDN off
        Order deny,allow
        Allow from all

    CustomLog /var/log/httpd/svn_access_log combined
    ErrorLog  /var/log/httpd/svn_error_log
  </Location>
</VirtualHost>

Put this in an configuration file like mysvn.conf and include it in your httpd.conf file. This creates an virtualhost on port 7000 with immediately in the root the subversion repository. Of course you need to configure your LDAP configuration. Or need to use basic authentication.

For security purposes not every LDAP user is allowed, you need to be member of the svnusers group.

UPDATE Read more…

Tags: , , ,

Fedora DS in corporate environments

April 23rd, 2008 No comments

Currently working for a company we decided to implement Fedora Directory Services as Unix Identity Storage. A nice LDAP server system with a nice interface. Not really useful in the beginnings, probably due to the lack of my own knowledge but it supports nice fail over and replication methods. Multi-master replication was easy to setup. Currently I only have problems with the directory admin server and SSL. It seems when I install the certificates the server is not longer responding. We need the SSL option to comply to the SOX standard.

Who has some experience with this?