From 8d0bc76487b428ad629f9bdd883cf8af794431a6 Mon Sep 17 00:00:00 2001 From: Marco Cyriacks Date: Fri, 12 Sep 2014 19:52:27 +0200 Subject: [PATCH] Change gitlab/log permissions in installation.md This patch changes default permission of the gitlab/log directory to u+rwX,go-w. This is done to make the directory NOT readable by group and others and to avoid logrotate complaining about it. chmod 755 is not used to avoid setting executable bit on file within the log dir. --- doc/install/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/install/installation.md b/doc/install/installation.md index 1175aff9dd9..c4d9668fde4 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -159,7 +159,7 @@ We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](da # Make sure GitLab can write to the log/ and tmp/ directories sudo chown -R git log/ sudo chown -R git tmp/ - sudo chmod -R u+rwX log/ + sudo chmod -R u+rwX,go-w log/ sudo chmod -R u+rwX tmp/ # Create directory for satellites