about summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/plausible.md
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/web-apps/plausible.md')
-rw-r--r--nixos/modules/services/web-apps/plausible.md35
1 files changed, 0 insertions, 35 deletions
diff --git a/nixos/modules/services/web-apps/plausible.md b/nixos/modules/services/web-apps/plausible.md
deleted file mode 100644
index d3673eabddd4..000000000000
--- a/nixos/modules/services/web-apps/plausible.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# 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;
-    adminUser = {
-      # activate is used to skip the email verification of the admin-user that's
-      # automatically created by plausible. This is only supported if
-      # postgresql is configured by the module. This is done by default, but
-      # can be turned off with services.plausible.database.postgres.setup.
-      activate = true;
-      email = "admin@localhost";
-      passwordFile = "/run/secrets/plausible-admin-pwd";
-    };
-    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";
-    };
-  };
-}
-```