chore(llm): add docling service location configuration

Add configuration for routing requests to the docling-serve service
via the "/docling" endpoint, enabling access from LAN, VPN, and WAN networks.
This commit is contained in:
Giulio De Pasquale 2025-08-07 12:50:08 +01:00
parent 5c59f48f39
commit a75b5bd2a0

View File

@ -103,6 +103,15 @@ in
proxyWebsockets = true;
};
};
"${cfg.backend.domain}" = {
locations."/docling" = {
host = config.services.docling-serve.host;
port = config.services.docling-serve.port;
allowLAN = true;
allowVPN = true;
allowWAN = true;
};
};
};
})
];