1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

fix(engiadina): dont delete cdn directory

This commit is contained in:
2021-04-19 20:02:10 +02:00
parent 9a4b9946cb
commit b93f4a49e0

View File

@@ -4,13 +4,17 @@ let
cdnRoot = "/run/engiadina";
in
{
systemd.tmpfiles.rules = [
(tmpfilesConfig {
systemd.tmpfiles.rules = map tmpfilesConfig [
{
type = "d";
path = cdnRoot;
mode = "0775";
user = config.users.users.me.name;
})
}
{
type = "x";
path = "${cdnRoot}/*";
}
];
services.nginx = {