From f6baeb328b84561b580bdb1d05869ced273aa7d9 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Thu, 16 Jun 2022 01:29:40 +0200 Subject: [PATCH] nextcloud conf: log to syslog, trusted domain --- bundles/nextcloud/files/managed.config.php | 10 ++++++++++ bundles/nextcloud/items.py | 1 + 2 files changed, 11 insertions(+) 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',