vps-monitor: Fix variable name

This commit is contained in:
SebastianStork 2026-01-20 08:53:44 +01:00
parent ca35081ddc
commit 581241e860
Signed by: SebastianStork
SSH key fingerprint: SHA256:iEM011ogNMG1q8+U500adGu/9rpPuZ2KnFtbdLeqTiI

View file

@ -45,14 +45,14 @@
web-services = web-services =
let let
privateDomain = config.custom.networking.overlay.domain; privateDomain = config.custom.networking.overlay.domain;
sproutedCloud = "sprouted.cloud"; sproutedDomain = "sprouted.cloud";
in in
{ {
gatus = { gatus = {
enable = true; enable = true;
domain = "status.${privateDomain}"; domain = "status.${privateDomain}";
generateDefaultEndpoints = true; generateDefaultEndpoints = true;
endpoints."alerts.${sproutedCloud}" = { endpoints."alerts.${sproutedDomain}" = {
path = "/v1/health"; path = "/v1/health";
extraConditions = [ "[BODY].healthy == true" ]; extraConditions = [ "[BODY].healthy == true" ];
}; };
@ -60,7 +60,7 @@
ntfy = { ntfy = {
enable = true; enable = true;
domain = "alerts.${sproutedCloud}"; domain = "alerts.${sproutedDomain}";
}; };
grafana = { grafana = {