nixos/conduit: improve state directory permissions

Allow only the conduit user to access its database files, and make sure
to create all new files with 0600 (o+rw).
This commit is contained in:
Martin Weinelt 2023-07-25 16:54:39 +02:00
parent 7ce0abe77d
commit 18733782ad
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -138,10 +138,12 @@ in
"~@privileged"
];
StateDirectory = "matrix-conduit";
StateDirectoryMode = "0700";
ExecStart = "${cfg.package}/bin/conduit";
Restart = "on-failure";
RestartSec = 10;
StartLimitBurst = 5;
UMask = "077";
};
};
};