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:
parent
5c59f48f39
commit
a75b5bd2a0
@ -103,6 +103,15 @@ in
|
|||||||
proxyWebsockets = true;
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user