DokuWiki can be used with an LemonLDAP SSO solution.
Note: This plugin hasn't be really tested in production for the moment, feel free to change it your own way.
Simply unpack lemonldap_plugin.tar.gz and copy the lemonldap.class.php and lemonldapuserdatabackend.class.php in your inc/auth/ directory.
Note: The DokuWiki must be provided by the http server wheris the lemonLDAP handler.
Very simple too, the only thing you have to change is the conf/local.php to add this line:
$conf[authtype] = lemonldap;
That's it!
There is an example of an apache2 vhost which provides an LemonLDAP authenticated DokuWiki:
For information, this can be an Apache2 lemon/doku config file:
PerlRequire /var/lib/lemonldap-ng/handler/MyHandler.pm
<VirtualHost *>
ServerName dokuwiki.sso-lemonldap.com;
PerlOptions +GlobalRequest
PerlHeaderParserHandler MyHandler
<Files *.pl>
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
PerlSendHeader On
</Files>
# DocumentRoot
DocumentRoot /var/www/dokuwiki.sso-lemonldap.com
<Directory /var/www/dokuwiki.sso-lemonldap.com>
Order deny,allow
#Deny from all
Allow from all
Options -Indexes +FollowSymLinks +MultiViews
</Directory>
<Location /logout >
PerlHeaderParserHandler MyHandler->logout
</Location>
<IfModule mod_dir.c>
DirectoryIndex index.pl index.php index.html
</IfModule>
# Logs
LogLevel warn
ErrorLog /var/log/apache2/dokuwikisso-lemonldap.com-error.log
CustomLog /var/log/apache2/dokuwikisso-lemonldap.com-access.log combined
</VirtualHost>