forked from Islandora/islandora_drupal_filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjaas.conf
51 lines (47 loc) · 1.36 KB
/
jaas.conf
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
fedora-auth
{
org.fcrepo.server.security.jaas.auth.module.XmlUsersFileModule required
debug=true;
ca.upei.roblib.fedora.servletfilter.DrupalAuthModule required
debug=true;
};
fedora-auth-xmlusersfile
{
org.fcrepo.server.security.jaas.auth.module.XmlUsersFileModule required
debug=true;
};
fedora-auth-ldap-bind
{
org.fcrepo.server.security.jaas.auth.module.LdapModule required
host.url="ldap://dev01.muradora.org"
auth.type="simple"
bind.mode="bind"
bind.filter="uid={0},ou=people,dc=muradora,dc=org"
debug=true;
};
fedora-auth-ldap-bind-search-bind
{
org.fcrepo.server.security.jaas.auth.module.LdapModule required
host.url="ldap://dev01.muradora.org"
auth.type="simple"
bind.mode="bind-search-bind"
bind.user="uid=binduser,ou=people,dc=muradora,dc=org"
bind.pass="murabind"
search.base="ou=people,dc=muradora,dc=org"
search.filter="(uid={0})"
attrs.fetch="cn,sn,mail,displayName,carLicense"
debug=true;
};
fedora-auth-ldap-bind-search-compare
{
org.fcrepo.server.security.jaas.auth.module.LdapModule required
host.url="ldap://dev01.muradora.org"
auth.type="simple"
bind.mode="bind-search-compare"
bind.user="uid=binduser,ou=people,dc=muradora,dc=org"
bind.pass="murabind"
search.base="ou=people,dc=muradora,dc=org"
search.filter="(uid={0})"
attrs.fetch="cn,sn,mail,displayName,carLicense"
debug=true;
};