Browse Source

README readability

Bastien Sevajol 9 years ago
parent
commit
361551596c
1 changed files with 7 additions and 0 deletions
  1. 7 0
      README.md

+ 7 - 0
README.md View File

301
 
301
 
302
     # LDAP server address
302
     # LDAP server address
303
     ldap_url = ldap://localhost:389
303
     ldap_url = ldap://localhost:389
304
+
304
     # Base dn to make queries
305
     # Base dn to make queries
305
     ldap_base_dn = dc=directory,dc=fsf,dc=org
306
     ldap_base_dn = dc=directory,dc=fsf,dc=org
307
+
306
     # Bind dn to identify the search
308
     # Bind dn to identify the search
307
     ldap_bind_dn = cn=admin,dc=directory,dc=fsf,dc=org
309
     ldap_bind_dn = cn=admin,dc=directory,dc=fsf,dc=org
310
+
308
     # The bind password
311
     # The bind password
309
     ldap_bind_pass = toor
312
     ldap_bind_pass = toor
313
+
310
     # Attribute name of user record who contain user login (email)
314
     # Attribute name of user record who contain user login (email)
311
     ldap_ldap_naming_attribute = uid
315
     ldap_ldap_naming_attribute = uid
316
+
312
     # Matching between ldap attribute and ldap user field
317
     # Matching between ldap attribute and ldap user field
313
     ldap_user_attributes = mail=email
318
     ldap_user_attributes = mail=email
319
+
314
     # TLS usage to communicate with your LDAP server
320
     # TLS usage to communicate with your LDAP server
315
     ldap_tls = False
321
     ldap_tls = False
322
+
316
     # If True, LDAP own tracim group managment (not available for now!)
323
     # If True, LDAP own tracim group managment (not available for now!)
317
     ldap_group_enabled = False
324
     ldap_group_enabled = False
318
 
325