enhancement/52 #54
2 changed files with 21 additions and 0 deletions
|
|
@ -11,6 +11,7 @@
|
|||
"homepage-dashboard"
|
||||
"immich"
|
||||
"jellyfin"
|
||||
"karakeep"
|
||||
"lidarr"
|
||||
"miniflux"
|
||||
"nginx"
|
||||
|
|
|
|||
20
modules/nixos/features/karakeep.nix
Normal file
20
modules/nixos/features/karakeep.nix
Normal 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}";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue