nixos-config/hosts/nuc/modules/uptime-kuma/default.nix

19 lines
303 B
Nix
Raw Normal View History

2023-07-15 11:54:30 +02:00
{ ... }:
let
domain = "monitoring.rfive.de";
in
{
services.uptime-kuma = {
enable = true;
};
services.nginx.virtualHosts."${domain}" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:3001";
proxyWebsockets = true;
};
};
}