mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 12:51:34 +01:00
vps-monitor: Fix variable name
This commit is contained in:
parent
ca35081ddc
commit
581241e860
1 changed files with 3 additions and 3 deletions
|
|
@ -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 = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue