summaryrefslogtreecommitdiffstats
path: root/17.0-rc/apache/config/reverse-proxy.config.php
diff options
context:
space:
mode:
authortilosp-bot <git-bot@tilosp.de>2020-04-23 11:43:31 +0000
committertilosp-bot <git-bot@tilosp.de>2020-04-23 11:43:31 +0000
commitb1825a188ba1918aa30d0b6ac18d0a32ff3ec707 (patch)
tree765460f21fd8612ca8c1e7d881cce215eac64dd3 /17.0-rc/apache/config/reverse-proxy.config.php
parenta0729154593b0de914125894c94ef66d7e7b90c8 (diff)
Signed-off-by: tilosp-bot <git-bot@tilosp.de>
Diffstat (limited to '17.0-rc/apache/config/reverse-proxy.config.php')
-rw-r--r--17.0-rc/apache/config/reverse-proxy.config.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/17.0-rc/apache/config/reverse-proxy.config.php b/17.0-rc/apache/config/reverse-proxy.config.php
deleted file mode 100644
index 667be312..00000000
--- a/17.0-rc/apache/config/reverse-proxy.config.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-$overwriteHost = getenv('OVERWRITEHOST');
-if ($overwriteHost) {
- $CONFIG['overwritehost'] = $overwriteHost;
-}
-
-$overwriteProtocol = getenv('OVERWRITEPROTOCOL');
-if ($overwriteProtocol) {
- $CONFIG['overwriteprotocol'] = $overwriteProtocol;
-}
-
-$overwriteWebRoot = getenv('OVERWRITEWEBROOT');
-if ($overwriteWebRoot) {
- $CONFIG['overwritewebroot'] = $overwriteWebRoot;
-}
-
-$overwriteCondAddr = getenv('OVERWRITECONDADDR');
-if ($overwriteCondAddr) {
- $CONFIG['overwritecondaddr'] = $overwriteCondAddr;
-}
-
-$trustedProxies = getenv('TRUSTED_PROXIES');
-if ($trustedProxies) {
- $CONFIG['trusted_proxies'] = array_filter(array_map('trim', explode(' ', $trustedProxies)));
-}