-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
48 lines (48 loc) · 969 Bytes
/
Copy pathconfig.example.json
File metadata and controls
48 lines (48 loc) · 969 Bytes
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
{
"mail": {
"smtp_addr": "localhost:25",
"from": "root@rootarea.de",
"to": "root@rootarea.de",
"subject_prefix": "[webcheck]"
},
"state_file": "/var/lib/webcheck/state.json",
"timeout_seconds": 10,
"send_recovery_mail": true,
"checks": [
{
"name": "example.com",
"type": "http",
"target": "https://example.com"
},
{
"name": "HAProxy systemd",
"type": "service",
"target": "haproxy"
},
{
"name": "Postfix systemd",
"type": "service",
"target": "postfix"
},
{
"name": "Dovecot systemd",
"type": "service",
"target": "dovecot"
},
{
"name": "SMTP lokal",
"type": "tcp",
"target": "127.0.0.1:25"
},
{
"name": "HTTPS lokal HAProxy",
"type": "tcp",
"target": "127.0.0.1:443"
},
{
"name": "Docker Container nextcloud",
"type": "docker",
"target": "nextcloud"
}
]
}