mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
19 lines
382 B
Nix
19 lines
382 B
Nix
{ ... }:
|
|
{
|
|
#TODO: implement uptime-kama
|
|
services.uptime-kuma = {
|
|
enable = true;
|
|
settings = {
|
|
PORT = "4321";
|
|
};
|
|
};
|
|
|
|
services.caddy.virtualHosts."http://status.rougebordeaux.xyz".extraConfig = ''
|
|
reverse_proxy :4321
|
|
'';
|
|
|
|
services.caddy.virtualHosts."http://uptime.sisyphe.normandy.rougebordeaux.xyz".extraConfig = ''
|
|
reverse_proxy :4321
|
|
'';
|
|
|
|
}
|