-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.default.json
53 lines (53 loc) · 1014 Bytes
/
config.default.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
{
"port": 5004,
"teamspeak": {
"port": 9987,
"host": "localhost",
"retry": {
"enabled": true,
"limit": 100,
"delay": 2500,
"maxDelay": 60000
},
"sid": 1,
"nickname": "Gamekeller",
"defaultGroupId": 8,
"auth": {
"user": "",
"pass": ""
}
},
"redis": {
"port": 6379,
"host": "127.0.0.1"
},
"modules": {
"monitor": {
"@enabled": true
},
"link": {
"@enabled": true,
"channelId": 1,
"key": "key",
"endpoint": "http://example.com/link"
},
"groups": {
"@enabled": true
},
"migrate": {
"@enabled": true
},
"notifications": {
"@enabled": true,
"updates": {
"currentVersion": "3.2.3"
},
"account": {
"recommendAfterMin": 600,
"linkKey": "key",
"signupEndpoint": "https://example.com/signup",
"resendEmailVerificationUrl": "https://example.com/account/verify/email/resend"
}
}
}
}