chore(brain): use HTTPS for Ollama via Traefik
Ollama is behind Traefik reverse proxy on ollama.lan, so no port needed and TLS should be enforced by default. Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
parent
43b470257b
commit
f17e1a0b6c
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ return [
|
|||
*/
|
||||
|
||||
'brain' => [
|
||||
'ollama_url' => env('BRAIN_OLLAMA_URL', 'http://ollama.lan:11434'),
|
||||
'ollama_url' => env('BRAIN_OLLAMA_URL', 'https://ollama.lan'),
|
||||
'qdrant_url' => env('BRAIN_QDRANT_URL', 'http://localhost:6334'),
|
||||
'collection' => env('BRAIN_COLLECTION', 'openbrain'),
|
||||
'embedding_model' => env('BRAIN_EMBEDDING_MODEL', 'embeddinggemma'),
|
||||
|
|
|
|||
Reference in a new issue