nixos/paperless: Configure Tika and Gotenberg endpoints to work with non-default listen addresses and ports

This commit is contained in:
provokateurin
2026-07-26 19:23:16 +02:00
parent 21cd65fff6
commit baf70ba443
@@ -447,7 +447,9 @@ in
})
(lib.mkIf cfg.configureTika {
PAPERLESS_GOTENBERG_ENABLED = true;
PAPERLESS_TIKA_GOTENBERG_ENDPOINT = "http://${config.services.gotenberg.bindIP}:${toString config.services.gotenberg.port}";
PAPERLESS_TIKA_ENABLED = true;
PAPERLESS_TIKA_ENDPOINT = "http://${config.services.tika.listenAddress}:${toString config.services.tika.port}";
})
];