You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nextcloud-docker/27/apache/config/trusteddomains.config.php

8 lines
202 B

<?php
if (getenv('NEXTCLOUD_TRUSTED_DOMAINS')) {
$CONFIG = array(
'trusted_domains' => array_map(function($domain){return trim($domain);},explode(",",getenv('NEXTCLOUD_TRUSTED_DOMAINS')))
);
}