1
0
Fork 0

Minor addition.

This commit is contained in:
Hans van Zijst 2024-12-09 00:38:38 +01:00
parent 43a3392106
commit 4a04fc4dd1
No known key found for this signature in database
GPG key ID: ECF8564FB15A8216

View file

@ -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
```