From 9061a8654ec4218bcf92d8ec96acc5c125154319 Mon Sep 17 00:00:00 2001 From: Hugo Renard <hugo.renard@protonmail.com> Date: Mon, 19 Jun 2023 18:53:19 +0200 Subject: [PATCH] feat: log via errorlog --- base/config/01-base.config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base/config/01-base.config.php b/base/config/01-base.config.php index 09b0c8a..7ec29af 100644 --- a/base/config/01-base.config.php +++ b/base/config/01-base.config.php @@ -26,9 +26,10 @@ $CONFIG = array ( // https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#file-versions // delete all versions older than 365 days automatically, delete other versions anytime if space needed (versions takes more than 50% of quota) 'versions_retention_obligation' => 'auto,365', - 'logfile' => '/dev/stdout', 'activity_expire_days' => 30, // remove config warning 'check_for_working_wellknown_setup' => false, 'default_phone_region' => 'FR', + 'log_type' => 'errorlog', + 'log_type_audit' => 'errorlog', ); -- GitLab