add uptime-kuma

This commit is contained in:
cy 2024-12-30 18:28:00 -05:00
parent 69dd25c579
commit 71ced36b83
3 changed files with 14 additions and 0 deletions

View file

@ -30,3 +30,8 @@ ntfy.cything.io {
import common import common
reverse_proxy localhost:8083 reverse_proxy localhost:8083
} }
status.cything.io {
import common
reverse_proxy localhost:3001
}

View file

@ -14,6 +14,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
./ghost.nix ./ghost.nix
./ntfy.nix ./ntfy.nix
./uptime-kuma.nix
]; ];
sops.age.keyFile = "/root/.config/sops/age/keys.txt"; sops.age.keyFile = "/root/.config/sops/age/keys.txt";

View file

@ -0,0 +1,8 @@
{...}: {
# data stored at /var/lib/uptime-kuma/ but does not expose
# an option to change it
services.uptime-kuma = {
enable = true;
settings.PORT = "3001";
};
}