-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.config.json
58 lines (58 loc) · 1.4 KB
/
example.config.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
{
"irc": {
"name": "ircd",
"port": 6667,
"sslPort": 6697,
"pingFrequency": 30,
"pongMaxlatency": 5,
"sslCertificate": {
"keyfile": "",
"certfile": ""
},
"auth": "ldap"
},
"slack": {
"name": "example.slack.com",
"token": "",
"signedSecret": "",
"proxy": "",
"botGravatarMail": "bot+%[email protected]",
"humanGravatarMail": "%[email protected]",
"joinChannels": [
"#general"
],
"forwards": {
"subchannel": {
"token": "",
"forwardChannels": [
{
"source": "#general_child",
"target": "#general"
}
]
}
}
},
"ldap": {
"url": "ldap://example.com:389",
"bindDN": "cn=test,ou=users,dc=example,dc=com",
"bindPass": "password",
"searchFilter": "(uid=%s)",
"searchBase": "ou=people,dc=example,dc=com",
"attrUsername": "uid",
"attrMemberOf": "memberOf"
},
"web": {
"listen": ":8989",
"webhookAuth": "token",
"apiAuth": "openid"
},
"storage": "redis",
"redis": {
"network": "tcp",
"addr": "localhost:6379",
"password": "",
"db": 0
},
"sentryDSN": ""
}