summaryrefslogtreecommitdiffstats
path: root/17.0/fpm/config/reverse-proxy.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-10-30 18:12:26 +0100
committerGitHub <noreply@github.com>2020-10-30 18:12:26 +0100
commit4efaf225b469aaa0f9349c91faa28c70423274a3 (patch)
tree51673c784eabb08913c5b7e4d9d5708ebd6e7223 /17.0/fpm/config/reverse-proxy.config.php
parente95023790cc36274053af7930831a9aecbf32efd (diff)
parent83503a43c95f49be6ea5f461ef1e06e9a6e93733 (diff)
Merge pull request #1294 from J0WI/rm17
Remove 17.0
Diffstat (limited to '17.0/fpm/config/reverse-proxy.config.php')
-rw-r--r--17.0/fpm/config/reverse-proxy.config.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/17.0/fpm/config/reverse-proxy.config.php b/17.0/fpm/config/reverse-proxy.config.php
deleted file mode 100644
index 667be312..00000000
--- a/17.0/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)));
-}