Replace Radicale config with new settings option
This commit is contained in:
parent
57f5952f8a
commit
6ab24a5583
|
@ -69,19 +69,16 @@
|
||||||
# Enable Radicale
|
# Enable Radicale
|
||||||
services.radicale = {
|
services.radicale = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = ''
|
settings = {
|
||||||
[server]
|
server.hosts = [ "127.0.0.1:5232" ];
|
||||||
hosts = 127.0.0.1:5232
|
auth = {
|
||||||
|
type = "htpasswd";
|
||||||
[auth]
|
htpasswd_filename = "/vault/radicale/users";
|
||||||
type = htpasswd
|
htpasswd_encryption = "md5";
|
||||||
htpasswd_filename = /vault/radicale/users
|
delay = 1;
|
||||||
htpasswd_encryption = md5
|
};
|
||||||
delay = 1
|
storage.filesystem_folder = "/vault/radicale/collections";
|
||||||
|
};
|
||||||
[storage]
|
|
||||||
filesystem_folder = /vault/radicale/collections
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# ZFS automatic snapshots
|
# ZFS automatic snapshots
|
||||||
|
|
Loading…
Reference in New Issue