mirror of
https://github.com/YunoHost-Apps/gitlab_ynh.git
synced 2024-09-03 18:36:35 +02:00
Update LDAP conf
This commit is contained in:
parent
0f493a1daf
commit
d5ab49e68e
1 changed files with 4 additions and 4 deletions
|
@ -359,18 +359,18 @@ gitlab_rails['ldap_enabled'] = true
|
|||
|
||||
gitlab_rails['ldap_servers'] = YAML.load <<-'EOS' # remember to close this block with 'EOS' below
|
||||
main: # 'main' is the GitLab 'provider ID' of this LDAP server
|
||||
label: 'LDAP'
|
||||
label: 'YunoHost LDAP'
|
||||
host: 'localhost'
|
||||
port: 389
|
||||
uid: 'uid'
|
||||
encryption: 'plain' # "start_tls" or "simple_tls" or "plain"
|
||||
bind_dn: ''
|
||||
bind_dn: 'ou=users,dc=yunohost,dc=org'
|
||||
password: ''
|
||||
active_directory: false
|
||||
allow_username_or_email_login: false
|
||||
block_auto_created_users: false
|
||||
base: 'ou=users,dc=yunohost,dc=org'
|
||||
user_filter: ''
|
||||
base: 'dc=yunohost,dc=org'
|
||||
user_filter: '(&(objectClass=posixAccount))' # group_base is only available in GitLab Enterprise Edition, so I can't add (permission=cn=gitlab.main,ou=permission,dc=yunohost,dc=org)
|
||||
EOS
|
||||
|
||||
### Smartcard authentication settings
|
||||
|
|
Loading…
Reference in a new issue