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
27 lines
692 B
Markdown
27 lines
692 B
Markdown
# Plausible {#module-services-plausible}
|
|
|
|
[Plausible](https://plausible.io/) is a privacy-friendly alternative to
|
|
Google analytics.
|
|
|
|
## Basic Usage {#module-services-plausible-basic-usage}
|
|
|
|
At first, a secret key is needed to be generated. This can be done with e.g.
|
|
```ShellSession
|
|
$ openssl rand -base64 64
|
|
```
|
|
|
|
After that, `plausible` can be deployed like this:
|
|
```nix
|
|
{
|
|
services.plausible = {
|
|
enable = true;
|
|
server = {
|
|
baseUrl = "http://analytics.example.org";
|
|
# secretKeybaseFile is a path to the file which contains the secret generated
|
|
# with openssl as described above.
|
|
secretKeybaseFile = "/run/secrets/plausible-secret-key-base";
|
|
};
|
|
};
|
|
}
|
|
```
|