mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
e90ef57645
including: - fixes according to new API changes - closing db connection in connection_destroy callback, not unbind - support of new schema code, samples changed accordingly - support for multiple objectclasses (to distinguish from unique objectclass-to-tables mapping) - auto 'ref' attribute support - samples now include illustrations of using these 2 features to make named referrals as described in ldapext-namedref draft more to come: - documentation update - different improvements to be more close to native directory (after beta?)
31 lines
803 B
Plaintext
31 lines
803 B
Plaintext
# $OpenLDAP$
|
|
#
|
|
# See slapd.conf(5) for details on configuration options.
|
|
# This file should NOT be world readable.
|
|
#
|
|
include ./schema/core.schema
|
|
include ./schema/cosine.schema
|
|
include ./schema/inetorgperson.schema
|
|
|
|
# Define global ACLs to disable default read access.
|
|
|
|
# Do not enable referrals until AFTER you have a working directory
|
|
# service AND an understanding of referrals.
|
|
#referral ldap://root.openldap.org
|
|
|
|
pidfile ./slapd.pid
|
|
argsfile ./slapd.args
|
|
|
|
#######################################################################
|
|
# sql database definitions
|
|
#######################################################################
|
|
|
|
database sql
|
|
suffix "o=sql,c=RU"
|
|
rootdn "cn=root,o=sql,c=RU"
|
|
rootpw secret
|
|
dbname ldap_mssql
|
|
dbuser ldap
|
|
dbpasswd ldap
|
|
subtree_cond "ldap_entries.dn LIKE '%'+?"
|