mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-18 02:56:42 +01:00
11 lines
243 B
PHP
11 lines
243 B
PHP
|
<?php
|
||
|
|
||
|
$trustedProxies = getenv('TRUSTED_PROXIES');
|
||
|
|
||
|
if ($trustedProxies) {
|
||
|
$trustedProxies = array_filter(array_map('trim', explode(' ', $trustedProxies)));
|
||
|
} else {
|
||
|
$trustedProxies = null;
|
||
|
}
|
||
|
|
||
|
$CONFIG['trusted_proxies'] = $trustedProxies;
|