logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Apache::Session::LDAP - An implementation of Apache::Session

Author

       Xavier Guimard, <x.guimard@free.fr>

Description

       This module is an implementation of Apache::Session. It uses an LDAP directory to store datas.

Name

       Apache::Session::LDAP - An implementation of Apache::Session

See Also

       Apache::Session

perl v5.30.3                                       2020-09-08                         Apache::Session::LDAP(3pm)

Synopsis

         use Apache::Session::LDAP;
         tie %hash, 'Apache::Session::LDAP', $id, {
           ldapServer           => 'ldap://localhost:389',
           ldapConfBase         => 'dmdName=applications,dc=example,dc=com',
           ldapBindDN           => 'cn=admin,dc=example,dc=com',
           ldapBindPassword     => 'pass',
           ldapObjectClass      => 'applicationProcess',
           ldapAttributeId      => 'cn',
           ldapAttributeContent => 'description',
           ldapVerify           => 'require',
           ldapCAFile           => '/etc/ssl/certs/ca-certificates.crt',
         };

See Also