server/test/data/slapd.conf.in
changeset 11057 0b59724cb3f2
parent 11052 058bb3dc685f
child 11058 23eb30449fe5
equal deleted inserted replaced
11052:058bb3dc685f 11057:0b59724cb3f2
     1 # This is the main slapd configuration file. See slapd.conf(5) for more
       
     2 # info on the configuration options.
       
     3 
       
     4 #######################################################################
       
     5 # Global Directives:
       
     6 
       
     7 # Features to permit
       
     8 #allow bind_v2
       
     9 
       
    10 # Schema and objectClass definitions
       
    11 include         /etc/ldap/schema/core.schema
       
    12 include         /etc/ldap/schema/cosine.schema
       
    13 include         /etc/ldap/schema/nis.schema
       
    14 include         /etc/ldap/schema/inetorgperson.schema
       
    15 include         /etc/ldap/schema/openldap.schema
       
    16 include         /etc/ldap/schema/misc.schema
       
    17 
       
    18 # Where the pid file is put. The init.d script
       
    19 # will not stop the server if you change this.
       
    20 pidfile         %(apphome)s/test-slapd.pid
       
    21 
       
    22 # List of arguments that were passed to the server
       
    23 argsfile        %(apphome)s/slapd.args
       
    24 
       
    25 # Read slapd.conf(5) for possible values
       
    26 loglevel        sync
       
    27 # none
       
    28 
       
    29 # Where the dynamically loaded modules are stored
       
    30 modulepath	/usr/lib/ldap
       
    31 moduleload	back_hdb
       
    32 moduleload	back_bdb
       
    33 moduleload      back_monitor
       
    34 
       
    35 # The maximum number of entries that is returned for a search operation
       
    36 sizelimit 500
       
    37 
       
    38 # The tool-threads parameter sets the actual amount of cpu's that is used
       
    39 # for indexing.
       
    40 tool-threads 1
       
    41 
       
    42 database        bdb
       
    43 
       
    44 # The base of your directory in database #1
       
    45 suffix          "dc=cubicweb,dc=test"
       
    46 
       
    47 # rootdn directive for specifying a superuser on the database. This is needed
       
    48 # for syncrepl. and ldapdelete easyness
       
    49 rootdn          "cn=admin,dc=cubicweb,dc=test"
       
    50 rootpw          "cw"
       
    51 # Where the database file are physically stored for database #1
       
    52 directory       "%(testdir)s"
       
    53