summaryrefslogtreecommitdiffstats
path: root/20.0-beta/apache/config/reverse-proxy.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-08-27 21:43:44 +0200
committerTilo Spannagel <development@tilosp.de>2020-08-27 21:43:44 +0200
commit288f9c09981b24f91d1d1082f8b7f83ccc648250 (patch)
tree9671603348a0bb74947446ce4ab7a8c79cec9ef5 /20.0-beta/apache/config/reverse-proxy.config.php
parent079c2519a3106c1476968d1470b67541d9bb8294 (diff)
Remove beta for now
Diffstat (limited to '20.0-beta/apache/config/reverse-proxy.config.php')
-rw-r--r--20.0-beta/apache/config/reverse-proxy.config.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/20.0-beta/apache/config/reverse-proxy.config.php b/20.0-beta/apache/config/reverse-proxy.config.php
deleted file mode 100644
index 667be312..00000000
--- a/20.0-beta/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)));
-}