-
Notifications
You must be signed in to change notification settings - Fork 9
/
nanny.toml
54 lines (47 loc) · 1021 Bytes
/
nanny.toml
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
# You can customise Nanny's name to be able to tell more of them apart.
name="Nanny"
addr="localhost:8080"
storage_dsn="file:nanny.sqlite" # SQLite data source name.
# Individual notifier settings.
[stderr]
enabled=true
[email]
enabled=false
from="[email protected]"
to=["[email protected]"]
subject="Nanny alert for %s"
subject_all_clear="Nanny all-clear for %s"
body="%s"
smtp_server="my.smtp.server"
smtp_port=587
smtp_user="[email protected]"
smtp_password=""
[sentry]
enabled=false
dsn=""
[twilio]
enabled=false
accountSid=""
authToken=""
appSid=""
from=""
to=""
[slack]
enabled=false
webhookURL=""
[webhook]
enabled=false
webhook_url="https://webhook.somewhere.com/webhook"
webhook_url_all_clear="https://webhook.somewhere.com/webhook"
webhook_secret=""
request_timeout="10s"
allow_insecure_tls=false
[xmpp]
enabled=false
to=["[email protected]"]
xmpp_server="xmpp.somewhere.com"
xmpp_port=5222
xmpp_user="[email protected]"
xmpp_password=""
xmpp_resource="Nanny"
xmpp_notls=false