Fix security issue.

The docs state that you need to make the config file _readable_
and then proceeds to make the file writable.

This changes it to make the file to be owned by root and readable by
anyone. This is the default for unix / linux and suggested practice
for files in /etc.
merge-requests/316/head
TomZ 2 years ago
parent 237645e975
commit 5c6c6f272c

@ -142,7 +142,8 @@ As we are using a Conduit specific user we need to allow it to read the config.
Debian:
```bash
sudo chown -R conduit:nogroup /etc/matrix-conduit
sudo chown -R root:root /etc/matrix-conduit
sudo chmod 755 /etc/matrix-conduit
```
If you use the default database path you also need to run this:

Loading…
Cancel
Save