configured uptime-kuma

This commit is contained in:
Rouven Seifert 2023-07-15 11:54:30 +02:00
parent 6577b08dab
commit 48e94316c0
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
5 changed files with 98 additions and 74 deletions

View file

@ -0,0 +1,18 @@
{ ... }:
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;
};
};
}