39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{ config, ... }:
|
|
{
|
|
services.paperless = {
|
|
enable = true;
|
|
address = "0.0.0.0";
|
|
passwordFile = builtins.toFile "paperless-initial-password" "paperless";
|
|
mediaDir = "/mnt/hd/paperless/";
|
|
settings = {
|
|
PAPERLESS_OCR_LANGUAGE = "ita+eng";
|
|
PAPERLESS_CONSUMER_IGNORE_PATTERN = builtins.toJSON [
|
|
".DS_STORE/*"
|
|
"desktop.ini"
|
|
];
|
|
PAPERLESS_OCR_USER_ARGS = builtins.toJSON {
|
|
optimize = 1;
|
|
pdfa_image_compression = "lossless";
|
|
invalidate_digital_signatures = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.persistence."/persist".directories = [
|
|
config.services.paperless.dataDir
|
|
];
|
|
|
|
imports = [ ../nginx-base ];
|
|
|
|
services.nginx.virtualHosts."paper.sisko.wg.aciceri.dev" = {
|
|
forceSSL = true;
|
|
useACMEHost = "aciceri.dev";
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:${builtins.toString config.services.paperless.port}";
|
|
};
|
|
extraConfig = ''
|
|
client_max_body_size 50000M;
|
|
'';
|
|
serverAliases = [ "paper.sisko.zt.aciceri.dev" ];
|
|
};
|
|
}
|