Proxy Support
Since version 1.1.6, Better Webhooks supports sending all outgoing webhook requests through an HTTP or HTTPS proxy.
How to Configure
Copy the
$SPLUNK_HOME/etc/apps/BetterWebhooks/default/better_webhooks.confto thelocaldirectory.Add or update the
proxysetting under the[settings]stanza. For example:[settings] proxy = http://proxy-server-ip:port
Replace
http://proxy-server-ip:portwith the address and port of your proxy server.Save the file and restart Splunk.
Notes
If the
proxysetting is left blank or omitted, requests will be sent directly, without using a proxy.The proxy setting applies globally to all webhook requests made by the app.
Authentication for the proxy (if required) can be included in the URL, e.g.
http://user:password@proxy-server:port.