blob: 73f86812415b4a913682bb55e0edfaa9b9953a9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Path to webhook config
HOOKS="/etc/webhook/hooks.json"
# IP Address webhook listen to
IPADDR="127.0.0.1"
# Port webhook binds to
PORT="9080"
# where to log stderr and stdout of webhook
LOG="/var/log/webhook.log"
# webhook wrapper' pidfile
PIDFILE="/var/run/webhook/webhook.pid"
# effective user
USER=nobody
# protocol://yourserver:port/URLPREFIX/:hook-id (default "hooks")
URLPREFIX="hooks"
# Other options
OPTS="-hotreload -nopanic -verbose"
|