Created
May 11, 2012 12:55
-
-
Save radmiraal/2659449 to your computer and use it in GitHub Desktop.
LDAP Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TYPO3: | |
FLOW3: | |
security: | |
authentication: | |
providers: | |
LDAP: | |
providerClass: TYPO3\LDAP\Security\Authentication\Provider\LDAPProvider | |
options: | |
host: 10.211.55.3 | |
port: 389 | |
baseDn: dc=example,dc=com | |
bind: | |
anonymous: yes | |
dn: | |
password: | |
# All PHP LDAP options can be set here. Make the constant lowercase | |
# and remove the ldap_opt_ prefix. | |
# Example: LDAP_OPT_PROTOCOL_VERSION becomes protocol_version | |
ldapOptions: | |
protocol_version: 3 | |
# ? will be replaced with the username provided | |
filter: | |
account: '(uid=?)' | |
# this will use the filter with domain, set it to yes to remove it for search | |
ignoreDomain: yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment