-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.sample.json
57 lines (57 loc) · 1.61 KB
/
conf.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
{
"listenAddress" : "127.0.0.1",
"listenPort": 8080,
"logging": {
"path": "",
"level": "debug"
},
"serverReadTimeoutSecs": 120,
"serverWriteTimeoutSecs": 60,
"db": {
"host": "dbserver",
"name": "dbname",
"user": "dbuser",
"password": "*******",
"port": 5432,
"poolSize": 5
},
"notifiers": [
{
"type": "email",
"name": "EmailNotifier1",
"tplDirPath": "/path/to/email/templates/templates",
"args": {
"sender": "[email protected]",
"recipients": ["[email protected]"],
"smtpServer": "smtp.server.cz:25",
"smtpUsername": "username",
"smtpPassword": "password",
"signature": {}
}
},
{
"type": "zulip",
"name": "ZulipNotifier1",
"tplDirPath": "/path/to/zulip/templates",
"args": {
"server": "https://zulip.server.com",
"sender": "[email protected]",
"token": "abcdef",
"type": "direct",
"recipients": ["[email protected]"]
},
"filter": {
"levels": ["critical"],
"apps": ["kontext"]
}
}
],
"publicPath": "http://somepath.com",
"auth": {
"toolbarUrl": "http://toolbar.path",
"cookieSid": "cnc_toolbar_sid",
"cookieAt": "cnc_toolbar_at",
"cookieRmme": "cnc_toolbar_rmme",
"cookieLang": "cnc_toolbar_lang"
}
}