Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
# Options of slapd (see man slapd)
2
SLAPD_OPTIONS="-f /etc/openldap/slapd.conf"
3
 
4
# At least one of SLAPD_LDAP, SLAPD_LDAPI and SLAPD_LDAPS must be set to 'yes'!
5
#
6
# Run slapd with -h "... ldap:/// ..."
7
#   yes/no, default: yes
8
SLAPD_LDAP=yes
9
 
10
# Run slapd with -h "... ldapi:/// ..."
11
#   yes/no, default: yes
12
SLAPD_LDAPI=yes
13
 
14
# Run slapd with -h "... ldaps:/// ..."
15
#   yes/no, default: no
16
SLAPD_LDAPS=no
17
 
18
# Run slapd with -h "... $SLAPD_URLS ..."
19
# This option could be used instead of previous three ones, but:
20
# - it doesn't overwrite settings of $SLAPD_LDAP, $SLAPD_LDAPS and $SLAPD_LDAPI options
21
# - it isn't overwritten by settings of $SLAPD_LDAP, $SLAPD_LDAPS and $SLAPD_LDAPI options
22
# example: SLAPD_URLS="ldapi:///var/lib/ldap_root/ldapi ldapi:/// ldaps:///"
23
# default: empty
24
#SLAPD_URLS=""
25
 
26
# Maximum allowed time to wait for slapd shutdown on 'service ldap stop' (in seconds)
27
#SLAPD_SHUTDOWN_TIMEOUT=3
28
 
29
# Parameters to ulimit, use to change system limits for slapd
30
#SLAPD_ULIMIT_SETTINGS=""