1
0
Fork 0

Synapse: Fix permissions

This commit is contained in:
Daniel Kempkens 2022-11-11 15:29:35 +01:00
parent b0c47b096f
commit 3b675768a9
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -4,13 +4,13 @@
# Synapse # Synapse
systemd.tmpfiles.rules = [ systemd.tmpfiles.rules = [
"d /etc/container-matrix/synapse 0755 0 0" "d /etc/container-matrix/synapse 0755 991 991"
]; ];
environment.etc."container-matrix/synapse/homeserver.yaml" = { environment.etc."container-matrix/synapse/homeserver.yaml" = {
source = ../../secret/container/matrix/config/homeserver.yaml; source = ../../secret/container/matrix/config/homeserver.yaml;
mode = "0640"; mode = "0640";
uid = 0; uid = 991;
gid = 0; gid = 991;
}; };
} }