summaryrefslogtreecommitdiffstats
path: root/17.0-rc/fpm/config/reverse-proxy.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-07-16 10:05:54 +0200
committerGitHub <noreply@github.com>2020-07-16 10:05:54 +0200
commit476e60305b5f51aba863f0552cbaf7c2d4e0dbf9 (patch)
treeccc5c55805dd898b3807e7faf7415db2e3c9f83d /17.0-rc/fpm/config/reverse-proxy.config.php
parent8c623fd1562666a7a35ed8ce8b06a7882d1b0459 (diff)
parent45f3995ab7c46fff7d7e779a00b69443f9a90fa6 (diff)
Merge pull request #1177 from tilosp/bot/update
Update nextcloud to 17.0.8, 18.0.7 and 19.0.1
Diffstat (limited to '17.0-rc/fpm/config/reverse-proxy.config.php')
-rw-r--r--17.0-rc/fpm/config/reverse-proxy.config.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/17.0-rc/fpm/config/reverse-proxy.config.php b/17.0-rc/fpm/config/reverse-proxy.config.php
deleted file mode 100644
index 667be312..00000000
--- a/17.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)));
-}