This repository was archived by the owner on Sep 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathconfig-sample.json
More file actions
executable file
·68 lines (68 loc) · 1.52 KB
/
config-sample.json
File metadata and controls
executable file
·68 lines (68 loc) · 1.52 KB
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
67
68
{
"base": {
"admin": "AzureDiamond",
"password": "hunter2",
"mods": [
"add-mod-tripcodes-here"
],
"salt": "insert-randomly-generated-string-here",
"allowTor": false
},
"webSocketServer": {
"enabled": true,
"host": "0.0.0.0",
"port": "6060",
"x_forwarded_for": false
},
"ircServer": {
"enabled": true,
"ip": "0.0.0.0",
"port": 6667,
"serverHostname": "chat.toastystoemp.com"
},
"restApiServer": {
"enabled": true,
"ip": "0.0.0.0",
"port": 12300,
"x_forwarded_for": false
},
"client": {
"enabled": true,
"host": "0.0.0.0",
"port": 8080,
"domain": "chat.toastystoemp.com",
"x_forwarded_for": false,
"logo": "text",
"logoImage": "https://toastystoemp.com/public/FrontPage.png",
"logoText": "Toasty.chat",
"logoOptions":{
"font": "Big",
"verticalLayout": "default",
"horizontalLayout": "default",
"kerning": "default"
}
},
"bouncer": {
"enabled": false,
"wss": "wss://chat.toastystoemp.com/chatws",
"domain": "chat.toastystoemp.com",
"port": 8081,
"socketPort": 6060,
"host": "0.0.0.0",
"memorySize": 200,
"mentionHold": true,
"commandChar": "#",
"client": true
},
"AutoMod": {
"enabled": true,
"ignoreTrips" : [],
"maxMessagesPer5Min" : 200,
"minMessageSpeed" : 1000,
"maxSimilarityMultiMessages" : 0.75,
"maxSimilaritySingleMessage" : 0.70,
"maxLineCount" : 8,
"maxWordLength" : 200,
"maxCharCount" : 1500
}
}