nixos-config/mastus/radicale.nix

61 lines
1.4 KiB
Nix
Raw Normal View History

2016-06-18 09:18:36 +02:00
{ config, pkgs, ... }:
let
radicalePort = 8002;
in
{
services.radicale = {
enable = true;
2022-09-26 20:32:55 +02:00
package = pkgs.radicale3.overrideDerivation (_: {
2022-09-29 15:39:38 +02:00
#patches = [ ./radicale1249.patch ];
2022-09-29 03:16:45 +02:00
doCheck = false;
pytestCheckPhase = "true";
2022-09-26 20:32:55 +02:00
});
2021-06-27 14:40:28 +02:00
settings = {
server = {
hosts = "127.0.0.1:${toString radicalePort}";
ssl = false;
};
2016-06-18 09:18:36 +02:00
2021-06-27 14:40:28 +02:00
storage = {
filesystem_folder = "/var/lib/radicale/collections";
};
2016-06-18 09:18:36 +02:00
2021-06-27 14:40:28 +02:00
auth = {
type = "htpasswd";
htpasswd_filename = "/var/lib/radicale/htpasswd";
2022-09-03 23:34:50 +02:00
htpasswd_encryption = "bcrypt";
2021-06-27 14:40:28 +02:00
};
2016-06-18 09:18:36 +02:00
2021-06-27 14:40:28 +02:00
rights = {
type = "owner_only";
};
};
2016-06-18 09:18:36 +02:00
};
2020-10-30 19:06:17 +01:00
security.acme.certs."gebner.org".extraDomainNames = [ "radicale.gebner.org" ];
2016-06-18 09:18:36 +02:00
2019-08-25 18:04:33 +02:00
services.nginx = {
recommendedProxySettings = true;
virtualHosts."radicale.gebner.org" = {
forceSSL = true;
useACMEHost = "gebner.org";
locations."/" = {
proxyPass = "http://127.0.0.1:${toString radicalePort}";
};
2021-07-14 14:10:24 +02:00
# Fake nextcloud api:
# https://gitlab.gnome.org/GNOME/gnome-online-accounts/-/issues/1#note_857357
extraConfig = ''
rewrite ^/remote.php/carddav / redirect;
rewrite ^/remote.php/caldav / redirect;
location /remote.php/webdav {
return 200;
}
'';
2019-08-25 18:04:33 +02:00
};
};
2016-06-18 09:18:36 +02:00
2019-08-26 18:06:21 +02:00
environment.systemPackages = with pkgs; [ apacheHttpd ];
2016-06-18 09:18:36 +02:00
}