Jump to content

Umami: Difference between revisions

From Official NixOS Wiki
Onny (talk | contribs)
Initial page
 
Onny (talk | contribs)
mNo edit summary
 
Line 11: Line 11:


After applying the configuration, Umami will be available at http://localhost:3000. The default login is user <code>admin</code> with password <code>umami</code>.
After applying the configuration, Umami will be available at http://localhost:3000. The default login is user <code>admin</code> with password <code>umami</code>.
[[Category:Web Applications]]
[[Category:Server]]

Latest revision as of 09:05, 16 May 2026

Umami is a modern, privacy-focused analytics platform. An open-source alternative to Google Analytics, Mixpanel and Amplitude.

Setup

For a local testing setup of Umami, following configuration can be used.

environment.etc."umami-secret".text = "3f9b4e6a7c1d2f8a9b0c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5";
services.umami = {
  enable = true;
  settings.APP_SECRET_FILE = "/etc/umami-secret";
};

Ensure to generate a new and strong secret in a production environment.

After applying the configuration, Umami will be available at http://localhost:3000. The default login is user admin with password umami.