nix-config/features/server/services/uptime-kuma.nix

21 lines
406 B
Nix
Raw Normal View History

2024-07-15 16:50:14 +02:00
{ ... }:
2024-07-15 16:27:23 +02:00
{
#TODO: implement uptime-kama
2024-07-15 17:30:19 +02:00
services.uptime-kuma = {
2024-07-15 16:27:23 +02:00
enable = true;
settings = {
PORT = "4000";
};
};
2024-10-30 17:44:54 +01:00
services.caddy.virtualHosts."http://status.hypervirtual.world".extraConfig = ''
reverse_proxy :4000
'';
services.caddy.virtualHosts."http://uptime.sisyphe.normandy.hypervirtual.world".extraConfig = ''
reverse_proxy :4000
'';
2024-07-15 16:27:23 +02:00
}