mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-18 11:06:43 +01:00
8 lines
202 B
PHP
8 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
if (getenv('NEXTCLOUD_TRUSTED_DOMAINS')) {
|
||
|
$CONFIG = array(
|
||
|
'trusted_domains' => array_map(function($domain){return trim($domain);},explode(",",getenv('NEXTCLOUD_TRUSTED_DOMAINS')))
|
||
|
);
|
||
|
}
|