-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml.sample
28 lines (23 loc) · 927 Bytes
/
config.yml.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
# galaxy URI and API key
galaxyuri: http://127.0.0.1:8080
galaxyapikey: GalaxyAPIkey
# LDAP URI, and base strings (for users, and group)
ldapuri: ldap://dc1.example.com
ldapuserbase: ou=users,dc=dc1,dc=example,dc=com
ldapgroupbase: ou=groups,dc=dc1,dc=example,dc=com
# LDAP filter to get all users that should be considered
# to get all use (objectClass=*)
ldapuserfilter: (objectClass=*)
# additional LDAP filter to get groups
# the group property storing group names
ldapgroupnamepro: cn
# the group property storing member names
ldapgroupmemberpro: memberUid
# additional LDAP filters for groups
ldapgroupfilter: (objectClass=*)
# the actualy used filters are:
# (&({ldapgroupmemberpro}=USER)({ldapgroupfilter})) should get all groups where user USER is member
# (&({ldapgroupnamepro}=GROUP)({ldapgroupfilter})) should get the group with the name GROUP
# purge user, i.e., remove data of the user
purgeuser: True