Host gatus on homeserver instead of vps-monitor

This commit is contained in:
SebastianStork 2026-03-01 14:44:42 +01:00
parent b80fc49dee
commit d521069b8d
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
4 changed files with 12 additions and 23 deletions

View file

@ -1,4 +1,4 @@
{ config, self, ... }:
{ self, ... }:
{
imports = [ self.nixosModules.server-profile ];
@ -21,19 +21,5 @@
};
services.dns.enable = true;
web-services =
let
privateDomain = config.custom.networking.overlay.domain;
sproutedDomain = "sprouted.cloud";
in
{
gatus = {
enable = true;
domain = "status.${privateDomain}";
generateDefaultEndpoints = true;
endpoints."dav.${sproutedDomain}".enable = false;
};
};
};
}