summaryrefslogtreecommitdiffstats
path: root/18.0-rc/fpm/config/reverse-proxy.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-08-27 21:41:43 +0200
committerGitHub <noreply@github.com>2020-08-27 21:41:43 +0200
commit079c2519a3106c1476968d1470b67541d9bb8294 (patch)
tree6f6908d4f596813c860abbbedf1cf0ec90fb1dad /18.0-rc/fpm/config/reverse-proxy.config.php
parente0247dc3cd9de9c70d9dec0c68d9a27e7a078376 (diff)
parent1353c04b9fb456e76d1900be034aa746f878ac5f (diff)
Merge pull request #1216 from tilosp/bot/update
Run update.sh
Diffstat (limited to '18.0-rc/fpm/config/reverse-proxy.config.php')
-rw-r--r--18.0-rc/fpm/config/reverse-proxy.config.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/18.0-rc/fpm/config/reverse-proxy.config.php b/18.0-rc/fpm/config/reverse-proxy.config.php
deleted file mode 100644
index 667be312..00000000
--- a/18.0-rc/fpm/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)));
-}