diff options
author | Sergei Fedosoff <eleksir@gmail.com> | 2019-11-09 08:21:26 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-11-09 08:21:26 +0700 |
commit | 52d564781ebe554de0582ceee36215bfabef8ed3 (patch) | |
tree | 8aa27f669933b3dcd6de1f8163d9a5d27bf8fdd5 /network/webhook/webhook.sysconfig | |
parent | 5cf7b0b2eec64ea9f3c353ee6e0f356fc9634696 (diff) |
network/webhook: Added (WebHook tool).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/webhook/webhook.sysconfig')
-rw-r--r-- | network/webhook/webhook.sysconfig | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/network/webhook/webhook.sysconfig b/network/webhook/webhook.sysconfig new file mode 100644 index 0000000000000..5480a856b2217 --- /dev/null +++ b/network/webhook/webhook.sysconfig @@ -0,0 +1,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/PREFIX/:hook-id (default "hooks") +URLPREFIX="hooks" + +# Other options +OPTS="-hotreload -nopanic -verbose" |