Use a proxy for event handlers
StackState Self-hosted v5.1.x
StackState can be configured to use a proxy for event handlers. When client proxy settings are configured for
http
or https
in the StackState application_stackstate.conf
file, these will be used by all event handlers. No further changes are required in the event handler function script.To use a proxy for event handlers, proxy details must be added to the
akka
section of the StackState application_stackstate.conf
file.- 1.Edit the file
application_stackstate.conf
. - 2.Add details of the proxy
host
andport
to theakka
section at the bottom of the file. Note that the specified proxy will be used for both HTTP and HTTPS requests.stackstate {...}akka {http {...client {proxy {https {host = "example-hostname"port = 443}}}...}} - 3.Save the
application_stackstate.conf
file. - 4.Restart StackState to apply the configuration changes. All event handlers will now use the configured proxy.
Last modified 3mo ago