-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconf.js
36 lines (31 loc) · 958 Bytes
/
conf.js
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
module.exports = {
cas_base_url: 'https://cas.univ.fr/cas',
flavor: 'apereo_cas', // one of: apereo_cas, shibboleth or lemonldap
//tgc_name: 'TGC', // by default, computed based on conf.flavor
features: ['proxy', 'single_logout', 'samlValidate'],
test_services: {
p2: 'http://localhost/',
p3: 'http://localhost/',
samlValidate: 'http://localhost/',
proxy: ['http://localhost/', 'imap://localhost'],
},
user: {
login: 'test',
mail: '[email protected]',
password: 'xxx',
},
user_for_fc: {
login: 'pldupont',
mail: '[email protected]',
password: 'xxx',
},
kerberos: {
realm: 'UNIV.FR',
flavor: 'MIT', // or 'Heimdal'
},
backChannelServer: {
port: 3000,
// require: ssh -R 3000:localhost:3000 cas-test -N
frontalUrl: 'https://cas-test.univ.fr/test-proxy',
},
};