summaryrefslogtreecommitdiffstats
path: root/scripts/ci/ldap/slapd2.conf
blob: 52c16a7281ffe9df41bba10c64a1d93c72c01e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
###### SAMPLE 1 - SIMPLE DIRECTORY ############
#
# NOTES: inetorgperson picks up attributes and objectclasses
#        from all three schemas
#
# NB: RH Linux schemas in /etc/openldap
#
include         /tmp/ldap2/schema/core.schema
include         /tmp/ldap2/schema/cosine.schema
include         /tmp/ldap2/schema/inetorgperson.schema
include         /tmp/ldap2/schema/nis.schema
include         doc/schemas/ldap/openldap/freeradius.schema
include         doc/schemas/ldap/openldap/freeradius-clients.schema
pidfile /tmp/slapd2.pid

# enable a lot of logging - we might need it
# but generates huge logs
loglevel        -1

# MODULELOAD definitions
# not required (comment out) before version 2.3
moduleload back_mdb.la

database config
rootdn "cn=admin,cn=config"
rootpw secret

#
# Certificates for SSL/TLS connections
# Note - these will not match the host name so clients need to use 
#        the "allow" option when checking certificates
#
#TLSCACertificateFile /tmp/ldap2/certs/cacert.pem
#TLSCertificateFile /tmp/ldap2/certs/servercert.pem
#TLSCertificateKeyFile /tmp/ldap2/certs/serverkey.pem

#######################################################################
# mdb database definitions
#
# replace example and com below with a suitable domain
#
# If you don't have a domain you can leave it since example.com
# is reserved for experimentation or change them to my and inc
#
#######################################################################

database mdb
suffix "dc=nodomain"

# root or superuser
rootdn "cn=admin,dc=nodomain"
rootpw secret
# The database directory MUST exist prior to running slapd AND
# change path as necessary
directory       /tmp/ldap2/db/

# other database parameters
# read more in slapd.conf reference section
checkpoint 128 15