mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-14 02:33:00 +00:00
33 lines
662 B
Nix
33 lines
662 B
Nix
{ config, lib, ... }:
|
|
{
|
|
|
|
config = lib.mkIf config.services.uptime-kuma.enable {
|
|
|
|
services.uptime-kuma = {
|
|
settings = {
|
|
PORT = "3033";
|
|
};
|
|
};
|
|
|
|
# Allow web traffic to Caddy
|
|
caddy.routes = [
|
|
{
|
|
match = [ { host = [ config.hostnames.status ]; } ];
|
|
handle = [
|
|
{
|
|
handler = "reverse_proxy";
|
|
upstreams = [
|
|
{ dial = "localhost:${config.services.uptime-kuma.settings.PORT}"; }
|
|
];
|
|
}
|
|
];
|
|
}
|
|
];
|
|
|
|
# Configure Cloudflare DNS to point to this machine
|
|
services.cloudflare-dyndns.domains = [ config.hostnames.status ];
|
|
|
|
};
|
|
|
|
}
|