Caldav (wip mail)

This commit is contained in:
Henry Hiles 2025-03-24 21:40:42 -04:00
commit edbef36e0e
No known key found for this signature in database
9 changed files with 134 additions and 4 deletions

View file

@ -0,0 +1,13 @@
{config, ...}: {
services = {
radicale = {
enable = true;
settings.auth = {
type = "htpasswd";
htpasswd_filename = config.age.secrets."caldavUsers.age".path;
htpasswd_encryption = "htpasswd";
};
};
caddy.virtualHosts."dav.henryhiles.com".extraConfig = "reverse_proxy localhost:5232";
};
}