]> git.sur5r.net Git - openldap/blob - servers/slapd/slapd.conf
e20c277be2496761cbbde7f88303dbf1a4f6b406
[openldap] / servers / slapd / slapd.conf
1 # $OpenLDAP$
2 #
3 # See slapd.conf(5) for details on configuration options.
4 # This file should NOT be world readable.
5 #
6 include         %SYSCONFDIR%/slapd.at.conf
7 include         %SYSCONFDIR%/slapd.oc.conf
8
9 # Using ACLs to control access is wise.  When ACLs are used,
10 # "defaultaccess none" is recommended (default is 'auth').
11 defaultaccess read
12
13 # Do not enable referrals until AFTER you have a working directory
14 # service AND an understanding of referrals.
15 #referral       ldap://root.openldap.org
16
17 pidfile         %LOCALSTATEDIR%/slapd.pid
18 argsfile        %LOCALSTATEDIR%/slapd.args
19
20 #######################################################################
21 # ldbm database definitions
22 #######################################################################
23
24 database        ldbm
25 suffix          "dc=your-domain, dc=com"
26 #suffix         "o=Your Organization Name, c=US"
27 directory       /usr/tmp
28 rootdn          "cn=root, dc=your-domain, dc=com"
29 #rootdn         "cn=root, o=Your Organization Name, c=US"
30 rootpw          secret
31 # cleartext passwords, especially for the rootdn, should
32 # be avoid.  See slapd.conf(5) for details.
33
34