From d22169803f9b184c575275b4a962941a935871a0 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 8 Feb 2020 11:50:25 +0100 Subject: [PATCH 1/2] Ensured any user can write in generated log files --- config/autoload/logger.global.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/autoload/logger.global.php b/config/autoload/logger.global.php index 01cf8aab..879f700a 100644 --- a/config/autoload/logger.global.php +++ b/config/autoload/logger.global.php @@ -41,6 +41,7 @@ return [ 'level' => Logger::INFO, 'filename' => 'data/log/shlink_log.log', 'max_files' => 30, + 'file_permission' => 0666, ], 'formatter' => $formatter, ], From 1ee5f64738d0190388fa6e26ad2698b64ee8cb6d Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 8 Feb 2020 11:51:39 +0100 Subject: [PATCH 2/2] Updated changelog --- CHANGELOG.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 947806a0..4136052e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org). +## [Unreleased] + +#### Added + +* *Nothing* + +#### Changed + +* *Nothing* + +#### Deprecated + +* *Nothing* + +#### Removed + +* *Nothing* + +#### Fixed + +* [#648](https://github.com/shlinkio/shlink/issues/648) Ensured any user can write in log files, in case shlink is run by several system users. + + ## 2.0.4 - 2020-02-02 #### Added