diff --git a/bundles/nextcloud/files/managed.config.php b/bundles/nextcloud/files/managed.config.php index d047b0c..6469af5 100644 --- a/bundles/nextcloud/files/managed.config.php +++ b/bundles/nextcloud/files/managed.config.php @@ -28,4 +28,14 @@ $CONFIG = array ( "redis" => [ "host" => "/var/run/redis/nextcloud.sock", ], + 'trusted_domains' => + array ( + 0 => 'localhost', + 1 => '127.0.0.1', + 2 => '${hostname}', + ), + "log_type" => "syslog", + "syslog_tag" => "nextcloud", + "logfile" => "", + "loglevel" => 3, ); diff --git a/bundles/nextcloud/items.py b/bundles/nextcloud/items.py index 09c2e5e..5488589 100644 --- a/bundles/nextcloud/items.py +++ b/bundles/nextcloud/items.py @@ -75,6 +75,7 @@ files = { 'mode': '640', 'context': { 'db_password': node.metadata.get('postgresql/roles/nextcloud/password'), + 'hostname': node.metadata.get('nextcloud/hostname'), }, 'needs': [ 'directory:/etc/nextcloud',