aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2021-06-06 23:35:46 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2021-06-06 23:35:46 +0200
commita565d58b53473c40fcb8b6e1e16b83906a76fbdd (patch)
tree516b5e3610c33e84ae0ea09f4808538eb15a539a /modules
parent5be300c116687fb79d37c0a7733b8e4b2bcdf1a1 (diff)
downloadNix-a565d58b53473c40fcb8b6e1e16b83906a76fbdd.tar.gz
Nix-a565d58b53473c40fcb8b6e1e16b83906a76fbdd.tar.zst
Nix-a565d58b53473c40fcb8b6e1e16b83906a76fbdd.zip
Add umami
Diffstat (limited to 'modules')
-rw-r--r--modules/private/default.nix1
-rw-r--r--modules/private/environment.nix10
-rw-r--r--modules/private/websites/default.nix1
-rw-r--r--modules/private/websites/tools/stats/default.nix52
4 files changed, 64 insertions, 0 deletions
diff --git a/modules/private/default.nix b/modules/private/default.nix
index 9f99ed9..0ff5214 100644
--- a/modules/private/default.nix
+++ b/modules/private/default.nix
@@ -101,6 +101,7 @@ set = {
101 performanceTool = ./websites/tools/performance; 101 performanceTool = ./websites/tools/performance;
102 toolsTool = ./websites/tools/tools; 102 toolsTool = ./websites/tools/tools;
103 mailTool = ./websites/tools/mail; 103 mailTool = ./websites/tools/mail;
104 statsTool = ./websites/tools/stats;
104 105
105 # Games 106 # Games
106 codenamesGame = ./websites/tools/games/codenames; 107 codenamesGame = ./websites/tools/games/codenames;
diff --git a/modules/private/environment.nix b/modules/private/environment.nix
index 980b878..719bf8f 100644
--- a/modules/private/environment.nix
+++ b/modules/private/environment.nix
@@ -1193,6 +1193,16 @@ in
1193 }; 1193 };
1194 }; 1194 };
1195 }; 1195 };
1196 umami = mkOption {
1197 description = "Umami configuration";
1198 type = submodule {
1199 options = {
1200 listenPort = mkOption { type = port; description = "Port to listen to"; };
1201 postgresql = mkPsqlOptions "Umami";
1202 hashSalt = mkOption { type = str; description = "Hash salt"; };
1203 };
1204 };
1205 };
1196 yourls = mkOption { 1206 yourls = mkOption {
1197 description = "Yourls configuration"; 1207 description = "Yourls configuration";
1198 type = submodule { 1208 type = submodule {
diff --git a/modules/private/websites/default.nix b/modules/private/websites/default.nix
index 07ffc3e..fa9ee8d 100644
--- a/modules/private/websites/default.nix
+++ b/modules/private/websites/default.nix
@@ -317,6 +317,7 @@ in
317 tools.performance.enable = true; 317 tools.performance.enable = true;
318 tools.tools.enable = true; 318 tools.tools.enable = true;
319 tools.email.enable = true; 319 tools.email.enable = true;
320 tools.stats.enable = false;
320 321
321 games.codenames.enable = true; 322 games.codenames.enable = true;
322 games.terraforming-mars.enable = true; 323 games.terraforming-mars.enable = true;
diff --git a/modules/private/websites/tools/stats/default.nix b/modules/private/websites/tools/stats/default.nix
new file mode 100644
index 0000000..5f184bc
--- /dev/null
+++ b/modules/private/websites/tools/stats/default.nix
@@ -0,0 +1,52 @@
1{ config, lib, pkgs, ... }:
2let
3 cfg = config.myServices.websites.tools.stats;
4 myCfg = config.myEnv.tools.umami;
5in
6{
7 options.myServices.websites.tools.stats.enable = lib.mkEnableOption "Enable stats site";
8 config = lib.mkIf cfg.enable {
9 secrets.keys = [
10 {
11 dest = "umami/env";
12 permission = "0400";
13 text = ''
14 PORT=${toString myCfg.listenPort}
15 HOSTNAME=127.0.0.1
16 DATABASE_URL=postgresql://${myCfg.postgresql.user}:${myCfg.postgresql.password}@localhost:${myCfg.postgresql.port}/${myCfg.postgresql.database}?sslmode=disable&host=${myCfg.postgresql.socket}
17 HASH_SALT=${myCfg.hashSalt}
18 '';
19 }
20 ];
21
22 services.websites.env.tools.vhostConfs.stats = {
23 certName = "eldiron";
24 addToCerts = true;
25 hosts = [ "stats.immae.eu" ];
26 root = null;
27 extraConfig = [
28 ''
29 ProxyPass / http://localhost:${toString myCfg.listenPort}/
30 ProxyPassReverse / http://localhost:${toString myCfg.listenPort}/
31 ProxyPreserveHost On
32 ''
33 ];
34 };
35 systemd.services.umami = {
36 description = "Umami service";
37 wantedBy = [ "multi-user.target" ];
38 after = [ "network.target" ];
39 wants = [ "postgresql.service" ];
40 path = [ pkgs.nodejs pkgs.bashInteractive ];
41 serviceConfig = {
42 Type = "simple";
43 User = "umami";
44 Group = "umami";
45 DynamicUser = true;
46 SupplementaryGroups = [ "keys" ];
47 ExecStart = "${pkgs.umami}/bin/umami";
48 EnvironmentFile = config.secrets.fullPaths."umami/env";
49 };
50 };
51 };
52}