aboutsummaryrefslogtreecommitdiff
path: root/outbound.conf.example
blob: cdb563505a46d70785e9cbd8a45cd8b3b71ab31d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
bgstack15