mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-19 21:59:34 +01:00
21 lines
406 B
Nix
21 lines
406 B
Nix
{ ... }:
|
|
{
|
|
#TODO: implement uptime-kama
|
|
services.uptime-kuma = {
|
|
enable = true;
|
|
settings = {
|
|
PORT = "4000";
|
|
};
|
|
};
|
|
|
|
services.caddy.virtualHosts."http://status.hypervirtual.world".extraConfig = ''
|
|
reverse_proxy :4000
|
|
'';
|
|
|
|
services.caddy.virtualHosts."http://uptime.sisyphe.normandy.hypervirtual.world".extraConfig = ''
|
|
reverse_proxy :4000
|
|
'';
|
|
|
|
|
|
}
|