Changes between Version 16 and Version 17 of TracLdapAuthPlugin


Ignore:
Timestamp:
Jan 16, 2018, 7:17:15 AM (6 years ago)
Author:
figaro
Comment:

Remove reference to non-existent plugin

Legend:

Unmodified
Added
Removed
Modified
  • TracLdapAuthPlugin

    v16 v17  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Port of TracLDAPAuth
     3= Password store for when running LDAP services
    44
    55== Description
     
    3535== Configuration
    3636
     37This is a sample `trac.ini` configuration for this plugin:
     38
     39{{{#!ini
     40[ldap]
     41host_url = ldap://ldap.example.com
     42base_dn = OU=Users,DC=example,DC=com
     43bind_user = ldap@example.com
     44bind_password = your_secret_password_here
     45search_scope = subtree
     46search_filter = (&(objectClass=user)(sAMAccountName=%s))
     47
     48[account-manager]
     49password_store = LDAPStore
     50
     51[components]
     52ldapauth.* = enabled
     53}}}
     54
     55Explanations of options:
     56
    3757`host_url`
    3858 
     
    5878  The ldap search filter template where %s is replaced with the username.
    5979
    60 == Example
    61 
    62 This is a sample `trac.ini` configuration for this plugin:
    63 
    64 {{{#!ini
    65 [ldap]
    66 host_url = ldap://ldap.example.com
    67 base_dn = OU=Users,DC=example,DC=com
    68 bind_user = ldap@example.com
    69 bind_password = your_secret_password_here
    70 search_scope = subtree
    71 search_filter = (&(objectClass=user)(sAMAccountName=%s))
    72 
    73 [account-manager]
    74 password_store = LDAPStore
    75 
    76 [components]
    77 ldapauth.* = enabled
    78 }}}
    79 
    8080== Recent Changes
    8181