-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoverpush.toml
More file actions
70 lines (59 loc) · 1.81 KB
/
overpush.toml
File metadata and controls
70 lines (59 loc) · 1.81 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
Debug = false
[Server]
Enable = true
BindIP = "127.0.0.1" # Make it 0.0.0.0 if you want to expose it to the world
# without using an HTTPS terminating proxy in front
Port = 8080
[Worker]
Enable = true
[Redis]
Connection = "redis-1337.c10.us-east-1-1.ec2.cloud.redislabs.com:1337"
Username = "default"
Password = "passwordOfTheRedisUser"
Cluster = false
Failover = false
# MasterName = "" # Only required when Failover = true
# Connections = [] # Only required when Cluster = true or Failover = true
Concurrency = 1
[[Users]]
Enable = true
Key = "YourPushoverUserKeyHere"
# The URL for this application would be:
# http://your.server/1/messages.json
[[Users.Applications]]
Enable = true
Token = "YourPushoverApplicationTokenHere"
Name = "Zsh"
IconPath = "/some/icon.png"
Target = "your_target_xmpp"
TargetArgs.Destination = "you@your-xmpp-server.im"
Format = "pushover"
# The URL for this application would be:
# http://your.server/SomeRandomUniqueTokenHere
[[Users.Applications]]
Enable = true
Token = "SomeRandomUniqueTokenHere"
Name = "Grafana"
IconPath = "/some/icon.png"
Target = "your_target_matrix"
TargetArgs.Destination = "!xXxXxXxXXXxxxXXXxX:matrix.org"
Format = "custom"
CustomFormat.Message = '{{ webhook "body.message" }}'
CustomFormat.Title = '{{ webhook "body.title" }}'
CustomFormat.URL = '{{ webhook "body.externalURL" }}'
[[Targets]]
Enable = true
ID = "your_target_xmpp"
Type = "xmpp"
[Targets.Args]
Server = "conversations.im"
TLS = "false"
Username = "your_overpush_account@conversations.im"
Password = "YourOverpushAccountPassword"
[[Targets]]
Enable = true
ID = "your_target_matrix"
Type = "apprise"
[Targets.Args]
Apprise = "/usr/bin/apprise"
Connection = 'matrixs://my_bot:hunter2@matrix.org:443/{{ arg "destination" }}?format=markdown'