summaryrefslogtreecommitdiffstats
path: root/19.0-rc/fpm/config/reverse-proxy.config.php
diff options
context:
space:
mode:
authorGitHub Workflow <workflow@github.com>2020-12-10 01:12:41 +0000
committerGitHub Workflow <workflow@github.com>2020-12-10 01:12:41 +0000
commitf87624c6eb4f37cf930dfec2441d744d44e31495 (patch)
tree7a0856128b02cdc72a06ffcb01791769b217b166 /19.0-rc/fpm/config/reverse-proxy.config.php
parent380c1645ebf5640833680e8f6f25b4f9d44b9b21 (diff)
Runs update.sh
Diffstat (limited to '19.0-rc/fpm/config/reverse-proxy.config.php')
-rw-r--r--19.0-rc/fpm/config/reverse-proxy.config.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/19.0-rc/fpm/config/reverse-proxy.config.php b/19.0-rc/fpm/config/reverse-proxy.config.php
deleted file mode 100644
index 667be312..00000000
--- a/19.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)));
-}