1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lstu_ynh.git synced 2024-09-03 19:36:12 +02:00

add ldap support

This commit is contained in:
Kayou 2019-02-14 23:31:40 +01:00
parent 910740418c
commit 20290b0fa1
No known key found for this signature in database
GPG key ID: 823A2CBE071D3126
2 changed files with 10 additions and 12 deletions

View file

@ -26,10 +26,8 @@
Level 1=auto
Level 2=auto
Level 3=auto
Level 4=na
# level 4: https://github.com/YunoHost-Apps/lstu_ynh/issues/4
Level 5=1
# level 5: https://github.com/YunoHost-Apps/lstu_ynh/issues/3
Level 4=1
Level 5=auto
Level 6=auto
Level 7=auto
Level 8=0

View file

@ -178,14 +178,14 @@
# set `ldap` if you want that only authenticated users can shorten URLs
# please note that everybody can still use shortend URLs
# optional, no default
#ldap => {
# uri => 'ldaps://ldap.example.org', # server URI
# user_tree => 'ou=users,dc=example,dc=org', # search base DN
# bind_dn => 'uid=ldap_user,ou=users,dc=example,dc=org', # search bind DN
# bind_pwd => 'secr3t', # search bind password
# user_attr => 'uid', # user attribute (uid, mail, sAMAccountName, etc.)
# user_filter => '(!(uid=ldap_user))', # user filter (to exclude some users, etc.)
#},
ldap => {
uri => 'ldap://localhost:389', # server URI
user_tree => 'dc=yunohost,dc=org', # search base DN
bind_dn => 'ou=users,dc=yunohost,dc=org', # search bind DN
# bind_pwd => '', # search bind password
user_attr => 'uid', # user attribute (uid, mail, sAMAccountName, etc.)
# user_filter => '(!(uid=ldap_user))', # user filter (to exclude some users, etc.)
},
# set `htpasswd` if you want to use an htpasswd file instead of ldap
# create the file with `htpasswd -c lstu.passwd user`, update it with `htpasswd lstu.passwd user2`