This commit is contained in:
glenn 2024-10-15 12:34:28 +02:00
parent ff227ba81a
commit 978c06d026
3 changed files with 42 additions and 15 deletions

26
ebooks.nix Normal file
View file

@ -0,0 +1,26 @@
{...}: let
domain = "ebooks.sondell.org";
port = 8083;
in {
#
services.calibre-web = {
enable = true;
listen.port = port;
group = "backup";
# dataDir = "/pool/media/ebooks";
user = "jellyfin";
options = {
enableBookUploading = true;
calibreLibrary = "/pool/media/ebooks";
};
};
services.nginx.virtualHosts.${domain} = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:${toString port}/";
proxyWebsockets = true;
};
};
}

View file

@ -1,9 +1,10 @@
{ config, pkgs, ... }:
let
domain = "files.sondell.org";
in
{
config,
pkgs,
...
}: let
domain = "files.sondell.org";
in {
systemd.services.filebrowser = with pkgs; {
enable = true;
description = "web app file explorer";
@ -14,6 +15,7 @@ in
serviceConfig = {
ExecStart = "${filebrowser}/bin/filebrowser -r /pool/media/ -d /var/lib/filebrowser/filebrowser.db";
User = "jellyfin";
Group = "backup";
Type = "simple";
};
};
@ -32,7 +34,6 @@ in
};
};
services.nginx.virtualHosts.${domain} = {
forceSSL = true;
enableACME = true;
@ -42,4 +43,3 @@ in
};
};
}

View file

@ -54,7 +54,8 @@
./jellyfin.nix
./filebrowser.nix
./tail.nix
./ai.nix
# ./ai.nix
./ebooks.nix
# ./matrix.nix TODO does not work atm, fixit
# ./coturn.nix
./vaultwarden.nix