xeus-cling: fix improper linking with LLVM (#351130)
[NixPkgs.git] / nixos / modules / services / web-apps / plausible.md
blob90e71c0d6d8d5d872548342e09d603cecafed9b6
1 # Plausible {#module-services-plausible}
3 [Plausible](https://plausible.io/) is a privacy-friendly alternative to
4 Google analytics.
6 ## Basic Usage {#module-services-plausible-basic-usage}
8 At first, a secret key is needed to be generated. This can be done with e.g.
9 ```ShellSession
10 $ openssl rand -base64 64
11 ```
13 After that, `plausible` can be deployed like this:
14 ```nix
16   services.plausible = {
17     enable = true;
18     server = {
19       baseUrl = "http://analytics.example.org";
20       # secretKeybaseFile is a path to the file which contains the secret generated
21       # with openssl as described above.
22       secretKeybaseFile = "/run/secrets/plausible-secret-key-base";
23     };
24   };
26 ```