summaryrefslogtreecommitdiffstats
path: root/18.0/apache/config/reverse_proxy.config.php
diff options
context:
space:
mode:
authorAndrás Maróy <andras@maroy.hu>2020-04-16 17:54:48 +0200
committerGitHub <noreply@github.com>2020-04-16 15:54:48 +0000
commit6d2390726fe7110b406c447d48aa345fc9d07122 (patch)
tree9c2c9976d731baafc64bc16dfdd376b9c515026b /18.0/apache/config/reverse_proxy.config.php
parent815298f5deea7796cf7968b61647606cdd8c8178 (diff)
* Expose reverse proxy related configuration as environment variables Signed-off-by: András Maróy <andras@maroy.hu> * Update README.md Co-Authored-By: J0WI <J0WI@users.noreply.github.com> Signed-off-by: András Maróy <andras@maroy.hu> * Update README.md Co-Authored-By: J0WI <J0WI@users.noreply.github.com> Signed-off-by: András Maróy <andras@maroy.hu> * Add default values for reverse proxy config from environment Signed-off-by: András Maróy <andras@maroy.hu> * Change reverse proxy default values to null Signed-off-by: András Maróy <andras@maroy.hu> * Store environment variables in vars in reverse-proxy config Signed-off-by: András Maróy <andras@maroy.hu> * Merge reverse proxy configs Signed-off-by: András Maróy <andras@maroy.hu> * Move overwrite parameters to reverse proxy section in the readme Signed-off-by: András Maróy <andras@maroy.hu> * Add reverse proxy config to 19.0-beta images Signed-off-by: András Maróy <andras@maroy.hu> * Remove default null from reverse proxy config to avoid breaking existing deployments Signed-off-by: András Maróy <andras@maroy.hu> Co-authored-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to '18.0/apache/config/reverse_proxy.config.php')
-rw-r--r--18.0/apache/config/reverse_proxy.config.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/18.0/apache/config/reverse_proxy.config.php b/18.0/apache/config/reverse_proxy.config.php
deleted file mode 100644
index 26a8bff3..00000000
--- a/18.0/apache/config/reverse_proxy.config.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-
-$trustedProxies = getenv('TRUSTED_PROXIES');
-
-if ($trustedProxies) {
- $trustedProxies = array_filter(array_map('trim', explode(' ', $trustedProxies)));
-} else {
- $trustedProxies = null;
-}
-
-$CONFIG['trusted_proxies'] = $trustedProxies; \ No newline at end of file