1
0
mirror of https://github.com/nextcloud/docker.git synced 2024-07-02 22:20:51 +02:00
docker-nextcloud/20.0-rc/fpm-alpine/config/reverse-proxy.config.php
tilosp-bot df570ee1e3 Run update.sh
Signed-off-by: tilosp-bot <git-bot@tilosp.de>
2020-09-18 14:00:20 +00:00

26 lines
674 B
PHP

<?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)));
}