-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsettings-development.sample.json
66 lines (66 loc) · 1.71 KB
/
settings-development.sample.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"generateFixtures": true,
"disableAccountCreation": false,
"attachmentsPath": "/tmp/attachments/",
"storage": {
"type": "s3",
"migrateFromFS": "false",
"s3": {
"endpoint": "xxx",
"key": "xxx",
"secret": "xxx",
"region": "xxx",
"bucket": "xxx"
}
},
"notificationsPerUser": 50,
"digestsRetention": 60,
"users": {
"search": "admin",
"invite": "admin"
},
"email": {
"from": "foo@bar.com",
"prefix": "latelier",
"mailUrl": "smtp://localhost:1025"
},
"roles": {
"admin": ["foo@bar.com"]
},
"auth": {
"oauth2": {
"enabled": true,
"title": "OAuth2 login",
"idMap": "preferred_username",
"usernameMap": "preferred_username",
"fullnameMap": "given_name",
"emailMap": "email",
"clientId": "<Keycloak create Client ID>",
"secret": "<Keycloak Client secret>",
"serverUrl": "<Keycloak server name>/auth",
"authEndpoint": "/realms/<keycloak realm>/protocol/openid-connect/auth",
"userinfoEndpoint": "/realms/<keycloak realm>/protocol/openid-connect/userinfo",
"tokenEndpoint" : "/realms/<keycloak realm>/protocol/openid-connect/token",
"logoutUrl": "/realms/l<keycloak realm>/protocol/openid-connect/logout",
"logoutRedirectParameter": "redirect_uri",
"idTokenWhitelistFields": []
}
},
"public": {
"emailVerificationNeeded": false,
"sso": {
"enabled": true,
"email": "ct-remote-email",
"logoutUrl": "/logout"
},
"uploadTransport": "ddp",
"tracking": {
"matomo": {
"enabled": true,
"host": "https://matomo.url/analytics/",
"siteId": "1",
"trackInitialView": true
}
}
}
}