Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
970 B
Markdown
34 lines
970 B
Markdown
# Davis {#module-services-davis}
|
|
|
|
[Davis](https://github.com/tchapi/davis/) is a caldav and carrddav server. It
|
|
has a simple, fully translatable admin interface for sabre/dav based on Symfony
|
|
5 and Bootstrap 5, initially inspired by Baïkal.
|
|
|
|
## Basic Usage {#module-services-davis-basic-usage}
|
|
|
|
At first, an application secret is needed, this can be generated with:
|
|
```ShellSession
|
|
$ cat /dev/urandom | tr -dc a-zA-Z0-9 | fold -w 48 | head -n 1
|
|
```
|
|
|
|
After that, `davis` can be deployed like this:
|
|
```
|
|
{
|
|
services.davis = {
|
|
enable = true;
|
|
hostname = "davis.example.com";
|
|
mail = {
|
|
dsn = "smtp://username@example.com:25";
|
|
inviteFromAddress = "davis@example.com";
|
|
};
|
|
adminLogin = "admin";
|
|
adminPasswordFile = "/run/secrets/davis-admin-password";
|
|
appSecretFile = "/run/secrets/davis-app-secret";
|
|
};
|
|
}
|
|
```
|
|
|
|
This deploys Davis using a sqlite database running out of `/var/lib/davis`.
|
|
|
|
Logs can be found in `/var/lib/davis/var/log/`.
|