0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-05-03 23:40:54 +02:00

Merge branch 'master' into patch-1

This commit is contained in:
Arjun Santhosh 2024-10-16 20:57:55 +05:30 committed by GitHub
commit a925a15f12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 245 additions and 190 deletions

View file

@ -28,3 +28,8 @@ $trustedProxies = getenv('TRUSTED_PROXIES');
if ($trustedProxies) {
$CONFIG['trusted_proxies'] = array_filter(array_map('trim', explode(' ', $trustedProxies)));
}
$forwardedForHeaders = getenv('FORWARDED_FOR_HEADERS');
if ($forwardedForHeaders) {
$CONFIG['forwarded_for_headers'] = array_filter(array_map('trim', explode(' ', $forwardedForHeaders)));
}