-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.json
62 lines (62 loc) · 1.05 KB
/
config.example.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
{
"socket": {
"path": "/tmp/ircbot.sock"
},
"irc": {
"server": "irc.example.com",
"nickname": "notifier",
"options": {
"autoConnect": true,
"channels": [
"#example"
],
"debug": true,
"port": 6697,
"realName": "IRC bot",
"secure": true,
"showErrors": true,
"userName": "ircbot"
},
"announceChannel": "#example",
"account": {
"username": "notifier",
"password": "example"
}
},
"process": {
"startupScript": "/home/user/ircBot/start.sh"
},
"fauna": {
"http": {
"listen": {
"host": "::",
"port": 1234
}
},
"oauth2": {
"credentials": {
"client": {
"id": "xxxx",
"secret": "xxxx"
},
"auth": {
"tokenHost": "https://example.com"
},
"options": {
"useBasicAuthorizationHeader": false,
"useBodyAuth": true
}
},
"authParams": {
"redirect_uri": "urn:ietf:wg:oauth:2.0:oob",
"scope": "public"
}
},
"urls": {
"resourceOwner": "https://example.com/user",
"actions": {
"door": "https://example.com/door/actions"
}
}
}
}