From 4a8ce7e2862b338a7f8e34d016a3119290239b0b Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 29 Nov 2022 16:09:22 -0500 Subject: initial commit --- extra/outbound.conf.apache | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 extra/outbound.conf.apache (limited to 'extra/outbound.conf.apache') diff --git a/extra/outbound.conf.apache b/extra/outbound.conf.apache new file mode 100644 index 0000000..7e95a5a --- /dev/null +++ b/extra/outbound.conf.apache @@ -0,0 +1,11 @@ +# Apache example config for outbound application +# Needs setsebool -P http_can_network_connect 1 +# vim:set syntax=apache ts=3 sw=3 sts=3 sr et: +ProxyPass /outbound http://localhost:4682/ +ProxyPassReverse /outbound http://localhost:4682/ + + # a2enmod headers. These are extra ones that are not provided by Apache natively. + RequestHeader set X-Forwarded-Proto "https" + # This header is not required to be set manually. The ProxyPass orand Location directive already provide it! + #RequestHeader append X-Forwarded-Prefix "/outbound" + -- cgit