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

@ -180,11 +180,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1709825366, "lastModified": 1709938482,
"narHash": "sha256-voasXvMdMSDU12etTmv2DT9SlcZyUNC7Y8OehMbETKE=", "narHash": "sha256-2Vw2WOFmEXWQH8ziFNOr0U48Guh5FacuD6BOEIcE99s=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "1283bf6ebbdee4d980b7551bed4c6596805e812c", "rev": "17431970b4ebc75a92657101ccffcfc9e1f9d8f0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -281,11 +281,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1709708644, "lastModified": 1709906691,
"narHash": "sha256-XAFOkZ6yexsqeJrCXWoHxopq0i+7ZqbwATXomMnGmr4=", "narHash": "sha256-206XMy1NGW42bnHukJl5W2F90yHNoJc7+H3i+/8i2Pg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-index-database", "repo": "nix-index-database",
"rev": "94a1e46434736a40f976a454f8bd3ea2144f349b", "rev": "2ad5ebce1e1be47a8cf330d85265ac09ffa15178",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -488,11 +488,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1709309746, "lastModified": 1709987509,
"narHash": "sha256-janCP2IoaBQIYQVn/LSYXncheCQ2l7u8E7V2XgHz2G8=", "narHash": "sha256-q7iK2q1Sff0FQfsp4G5wX0A8r+k1p6XLOlrICueXtlI=",
"owner": "rouven0", "owner": "rouven0",
"repo": "TruckSimulatorBot", "repo": "TruckSimulatorBot",
"rev": "6a6bd63946a031ac020a9463cddb3a99de9385fd", "rev": "db517d53381e3ccea75653e8d29a68d0800cb8c0",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -7,14 +7,10 @@
./modules/networks ./modules/networks
./modules/backup ./modules/backup
./modules/cache ./modules/cache
# ./modules/grafana
# ./modules/hydra
./modules/keycloak ./modules/keycloak
# ./modules/prometheus
./modules/matrix ./modules/matrix
./modules/mautrix-telegram ./modules/mautrix-telegram
./modules/seafile ./modules/seafile
./modules/uptime-kuma
./modules/vaultwarden ./modules/vaultwarden
./modules/nginx ./modules/nginx
]; ];

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;
};
};
}