nas0: add webdav

This commit is contained in:
41666 2024-03-31 16:06:15 -04:00
parent fa40c9c3cb
commit 268b755795

View file

@ -80,4 +80,21 @@
''; '';
}; };
}; };
# WebDAV anonymous reads
services.webdav-server-rs = {
enable = true;
seetings = {
location = [
{
route = [ "/public/*path" ];
directory = "/mnt/storage/main/public";
handler = "filesystem";
methods = [ "webdav-ro" ];
autoindex = true;
auth = "false";
}
];
};
};
} }