From a4c86f127c97289bce02f3add2135bdfcbeefde8 Mon Sep 17 00:00:00 2001 From: Hans van Zijst Date: Mon, 9 Dec 2024 00:38:38 +0100 Subject: [PATCH] Minor addition. --- matrix/synapse/workers.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/matrix/synapse/workers.md b/matrix/synapse/workers.md index c84eec7..2711e12 100644 --- a/matrix/synapse/workers.md +++ b/matrix/synapse/workers.md @@ -97,3 +97,16 @@ Their configuration goes into `/etc/matrix-synapse/workers`, which we have to create first. +# Preparing for sockets + +Because we use sockets for speed, we should make sure only those programs that +need access to those sockets get it. + +Create a new group and add the users that need access to it: + +``` +addgroup --system clubmatrix +addgroup matrix-synapse clubmatrix +addgroup www-data clubmatrix +``` +