Merge pull request #54 from wi11-holdsworth/enhancement/52

enhancement/52
This commit is contained in:
Will 2025-12-15 21:34:45 +11:00 committed by GitHub
commit e211bca3ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 22 additions and 0 deletions

View file

@ -11,6 +11,7 @@
"homepage-dashboard" "homepage-dashboard"
"immich" "immich"
"jellyfin" "jellyfin"
"karakeep"
"lidarr" "lidarr"
"miniflux" "miniflux"
"radicale" "radicale"
@ -20,6 +21,7 @@
"prowlarr" "prowlarr"
"qbittorrent" "qbittorrent"
"radarr" "radarr"
"radicale"
"sonarr" "sonarr"
"syncthing" "syncthing"
"vaultwarden" "vaultwarden"

View file

@ -0,0 +1,20 @@
let
port = "5014";
in
{
services = {
karakeep = {
enable = true;
extraEnvironment = {
PORT = port;
DISABLE_NEW_RELEASE_CHECK = "true";
};
};
nginx.virtualHosts."karakeep.fi33.buzz" = {
forceSSL = true;
useACMEHost = "fi33.buzz";
locations."/".proxyPass = "http://localhost:${port}";
};
};
}