mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
|
# $OpenLDAP$
|
||
|
#
|
||
|
# See slapd.conf(5) for details on configuration options.
|
||
|
# This file should NOT be world readable.
|
||
|
#
|
||
|
include /usr/local/etc/openldap/schema/core.schema
|
||
|
include /usr/local/etc/openldap/schema/cosine.schema
|
||
|
include /usr/local/etc/openldap/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 /usr/local/var/slapd.pid
|
||
|
argsfile /usr/local/var/slapd.args
|
||
|
|
||
|
#######################################################################
|
||
|
# sql database definitions
|
||
|
#######################################################################
|
||
|
|
||
|
database sql
|
||
|
suffix "o=sql,c=RU"
|
||
|
rootdn "cn=root,o=sql,c=RU"
|
||
|
rootpw secret
|
||
|
dbname PostgreSQL
|
||
|
dbuser postgres
|
||
|
dbpasswd postgres
|
||
|
subtree_cond "upper(ldap_entries.dn) LIKE '%'||?"
|
||
|
insentry_query "insert into ldap_entries (id,dn,oc_map_id,parent,keyval) values ((select max(id)+1 from ldap_entries),?,?,?,?)"
|
||
|
upper_func "upper"
|
||
|
strcast_func "text"
|
||
|
has_ldapinfo_dn_ru no
|
||
|
|