nuc: disable uptime-kuma

This commit is contained in:
Rouven Seifert 2024-03-09 13:36:48 +01:00
parent 7bad85eb1f
commit 103c238e3e
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 9 additions and 31 deletions

View file

@ -1,18 +0,0 @@
{ config, ... }:
let
domain = "uptime.${config.networking.domain}";
in
{
services.uptime-kuma = {
enable = true;
};
services.nginx.virtualHosts."${domain}" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:3001";
proxyWebsockets = true;
};
};
}