bentopdf added

This commit is contained in:
2026-05-31 12:16:59 +03:00
parent e0e908c79d
commit b001652162
8 changed files with 447 additions and 41 deletions
+16
View File
@@ -0,0 +1,16 @@
{
config,
inputs,
...
}:
# let
# pkgs-stable = import inputs.nixpkgs-stable { system = "x86_64-linux"; };
# in
{
services.bentopdf = {
enable = true;
domain = "bentopdf.local";
nginx.enable = true;
# package = pkgs-stable.bentopdf;
};
}
+1
View File
@@ -5,6 +5,7 @@
{
imports = [
../software/beets
./bentopdf.nix
./calibre-web.nix
./glances.nix
./immich.nix
+21
View File
@@ -31,6 +31,27 @@ in
}
];
};
"bentopdf.local" = {
forceSSL = false;
enableACME = false;
listen = [
{
addr = "0.0.0.0";
port = 80;
}
{
addr = "100.64.0.0";
port = 8446;
}
{
addr = "192.168.1.20";
port = 8446;
}
];
extraConfig = ''
client_max_body_size 5G;
'';
};
"nextcloud.local" = {
forceSSL = false;
enableACME = false;