Compare commits
No commits in common. "fcbbf4b8e4750531ef9a268b4cb659168f645a3e" and "c3996f55ceba1ceba82cff368da3aedfde68b19d" have entirely different histories.
fcbbf4b8e4
...
c3996f55ce
3 changed files with 5 additions and 12 deletions
|
|
@ -78,7 +78,6 @@
|
||||||
# and where they get deployed to
|
# and where they get deployed to
|
||||||
deploy.nodes = mkNodes {
|
deploy.nodes = mkNodes {
|
||||||
crayon = { hostname = "squi.bid"; };
|
crayon = { hostname = "squi.bid"; };
|
||||||
blob = { hostname = "192.168.50.159"; };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# dev shell to deploy this flake
|
# dev shell to deploy this flake
|
||||||
|
|
|
||||||
|
|
@ -10,39 +10,33 @@ in {
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
settings = {
|
settings = {
|
||||||
web.port = 8081;
|
web.port = 8081;
|
||||||
storage = {
|
|
||||||
path = "/var/lib/gatus/db.sqlite";
|
|
||||||
type = "sqlite";
|
|
||||||
caching = true;
|
|
||||||
};
|
|
||||||
ui.dark-mode = true;
|
|
||||||
endpoints = [
|
endpoints = [
|
||||||
{
|
{
|
||||||
name = "nas";
|
name = "nas";
|
||||||
group = "external";
|
group = "external";
|
||||||
url = "http://192.168.50.240";
|
url = "http://192.168.50.240";
|
||||||
interval = "1m";
|
interval = "5m";
|
||||||
conditions = gatus.up;
|
conditions = gatus.up;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "site";
|
name = "site";
|
||||||
group = "remote";
|
group = "remote";
|
||||||
url = "https://squi.bid";
|
url = "https://squi.bid";
|
||||||
interval = "2m";
|
interval = "10m";
|
||||||
conditions = gatus.up;
|
conditions = gatus.up;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "git site";
|
name = "git site";
|
||||||
group = "remote";
|
group = "remote";
|
||||||
url = "https://git.squi.bid";
|
url = "https://git.squi.bid";
|
||||||
interval = "2m";
|
interval = "10m";
|
||||||
conditions = gatus.up;
|
conditions = gatus.up;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "voidpkgs";
|
name = "voidpkgs";
|
||||||
group = "remote";
|
group = "remote";
|
||||||
url = "https://voidpkgs.squi.bid";
|
url = "https://voidpkgs.squi.bid";
|
||||||
interval = "2m";
|
interval = "10m";
|
||||||
conditions = [''[BODY] == pat(*x86_64-repodata.sig2*)''];
|
conditions = [''[BODY] == pat(*x86_64-repodata.sig2*)''];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
name = "jellyfin";
|
name = "jellyfin";
|
||||||
group = "local";
|
group = "local";
|
||||||
url = "http://localhost:8096/System/Ping";
|
url = "http://localhost:8096/System/Ping";
|
||||||
interval = "30s";
|
interval = "5m";
|
||||||
conditions = [''[BODY] == "Jellyfin Server"''];
|
conditions = [''[BODY] == "Jellyfin Server"''];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue