From d531f78075122dc7c4a0ac32515bc752f0212361 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Tue, 13 Jun 2023 11:47:58 +0200 Subject: [PATCH] Add uptime-kuma --- nki-personal-do/configuration.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nki-personal-do/configuration.nix b/nki-personal-do/configuration.nix index 8d4dcac..24ebd8e 100644 --- a/nki-personal-do/configuration.nix +++ b/nki-personal-do/configuration.nix @@ -88,6 +88,17 @@ }; cloud.traefik.certsDumper.enable = true; + # Uptime-Kuma + services.uptime-kuma = { + enable = true; + settings.HOST = "127.0.0.1"; + settings.PORT = "16904"; + }; + cloud.traefik.hosts.uptime-kuma = { host = "status.nkagami.me"; port = 16904; }; + cloud.traefik.hosts.uptime-kuma-dtth = { host = "status.dtth.ch"; port = 16904; }; + cloud.traefik.hosts.uptime-kuma-codefun = { host = "status.codefun.vn"; port = 16904; }; + + # Arion virtualisation.arion.backend = "docker";