From 4a8ce7e2862b338a7f8e34d016a3119290239b0b Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 29 Nov 2022 16:09:22 -0500 Subject: initial commit --- outbound.conf.example | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 outbound.conf.example (limited to 'outbound.conf.example') diff --git a/outbound.conf.example b/outbound.conf.example new file mode 100644 index 0000000..cdb5635 --- /dev/null +++ b/outbound.conf.example @@ -0,0 +1,18 @@ +# File: outbound.conf.example + +# WHITELIST of domains, one of which must be in the Referer header, to be given a redirect. If the referer is absent or not in this list, then the requester gets response 404. +WHITELIST = [ + "d2-03a", + "d2-03a:5000", + "d2-03a.ipa.internal.com", + "localhost", + "www.internal.com", + "www.example.com", + "server3", + "server3.ipa.internal.com", + "ipa.internal.com" +] +# DEBUG shows a small amount of debug info in server logs. +DEBUG = False +# ALLOW_DEBUG allows showing info to the requester if the requester provides header 'Debug: true'. It is recommended to disable this for production. +ALLOW_DEBUG = False -- cgit