-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.json
More file actions
92 lines (92 loc) · 2.32 KB
/
Copy pathconfig.sample.json
File metadata and controls
92 lines (92 loc) · 2.32 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"settings": {
"worker_name": "ntfy-reverse-proxy",
"base_domain": "ntfy.example.com",
"show_response_output": false
},
"servers": [
{
"name": "primary",
"server": "https://ntfy.example.com",
"token": "tk_replace_with_your_token"
},
{
"name": "fallback",
"server": "https://ntfy-backup.example.com",
"token": "tk_replace_with_fallback_token"
}
],
"contexts": [
{
"id": "replace_with_random_string",
"name": "GitHub Status",
"type": "http",
"interpreter": "statuspage",
"topic": "github-status",
"error_topic": "errors",
"mode": "send-once",
"show_visitor_info": false,
"primary_server": "primary",
"servers": ["primary", "fallback"]
},
{
"id": "replace_with_random_string",
"name": "Seerr Requests",
"type": "http",
"interpreter": "seerr",
"topic": "media-requests",
"mode": "send-once",
"show_visitor_info": false,
"primary_server": "primary",
"servers": ["primary"],
"token": "replace_with_auth_token"
},
{
"id": "replace_with_random_string",
"name": "Synology NAS",
"type": "http",
"interpreter": "synology",
"topic": "nas-alerts",
"mode": "send-once",
"show_visitor_info": true,
"primary_server": "primary",
"servers": ["primary"],
"token": "replace_with_auth_token"
},
{
"id": "replace_with_random_string",
"name": "Generic Webhook",
"type": "http",
"interpreter": "plain-text",
"topic": "webhooks",
"mode": "send-once",
"show_visitor_info": true,
"primary_server": "primary",
"servers": ["primary"]
},
{
"id": "pfsense",
"name": "pfSense Firewall",
"type": "email",
"interpreter": "pfsense",
"topic": "firewall",
"mode": "send-once",
"show_visitor_info": false,
"primary_server": "primary",
"servers": ["primary"],
"allowed_from": "*@pfsense.local"
},
{
"id": "unifi",
"name": "UniFi Network",
"type": "email",
"interpreter": "unifi",
"topic": "network",
"mode": "send-once",
"show_visitor_info": false,
"primary_server": "primary",
"servers": ["primary"],
"allowed_from": "*@unifi.local"
}
]
}