uptime kuma

This commit is contained in:
xqtc161 2024-04-18 14:57:24 +02:00
parent ef6b842f75
commit ad4c919b3e
2 changed files with 10 additions and 0 deletions

View file

@ -13,6 +13,7 @@ with lib; {
./calibre-web.nix ./calibre-web.nix
./transmission.nix ./transmission.nix
./lanrarari.nix ./lanrarari.nix
./uptime.nix
../../gc.nix ../../gc.nix
../../../common ../../../common
]; ];
@ -43,6 +44,9 @@ with lib; {
grafana.heroin.trade { grafana.heroin.trade {
reverse_proxy http://127.0.0.1:2342 reverse_proxy http://127.0.0.1:2342
} }
uptime.heroin.trade {
reverse_proxy 127.0.0.1:3001
}
''; '';
}; };

View file

@ -0,0 +1,6 @@
{config, lib, ...}:
{
services.uptime-kuma = {
enable = true;
};
}