summaryrefslogtreecommitdiffstats
path: root/19.0/fpm-alpine/config/reverse-proxy.config.php
diff options
context:
space:
mode:
authortilosp-bot <git-bot@tilosp.de>2020-06-04 22:50:41 +0200
committerGitHub <noreply@github.com>2020-06-04 20:50:41 +0000
commita229b17bca928e95181e92e64d06427ccd15bb86 (patch)
tree035f8e67c69fa13de0c5aa991642b81962b54cf4 /19.0/fpm-alpine/config/reverse-proxy.config.php
parentba1500b05ee8889c99a46f1d0de63ab40d3e2926 (diff)
Run update.sh (#1132)
* Run update.sh Signed-off-by: tilosp-bot <git-bot@tilosp.de> * Run update.sh Signed-off-by: tilosp-bot <git-bot@tilosp.de> * Run update.sh Signed-off-by: tilosp-bot <git-bot@tilosp.de> * Add bmath for 19.0 (fix ##1122 and #1137) Signed-off-by: J0WI <J0WI@users.noreply.github.com> Co-authored-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to '19.0/fpm-alpine/config/reverse-proxy.config.php')
-rw-r--r--19.0/fpm-alpine/config/reverse-proxy.config.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/19.0/fpm-alpine/config/reverse-proxy.config.php b/19.0/fpm-alpine/config/reverse-proxy.config.php
new file mode 100644
index 00000000..667be312
--- /dev/null
+++ b/19.0/fpm-alpine/config/reverse-proxy.config.php
@@ -0,0 +1,25 @@
+<?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)));
+}