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

This commit is contained in:
Sandro
2026-07-27 16:01:28 +00:00
committed by GitHub
@@ -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}";
})
];