fix(ai-backend): Specify OLLAMA_HOST with explicit port
The `OLLAMA_HOST` environment variable in the `ai-backend` Nomad job has been updated from `0.0.0.0` to `0.0.0.0:11434`. This change ensures OLLAMA explicitly binds to the correct address and port, preventing potential connectivity issues or misconfigurations where the port might be omitted or incorrectly inferred.
This commit is contained in:
@@ -19,7 +19,7 @@ job "ai-backend" {
|
|||||||
driver = "podman"
|
driver = "podman"
|
||||||
|
|
||||||
env {
|
env {
|
||||||
OLLAMA_HOST = "0.0.0.0"
|
OLLAMA_HOST = "0.0.0.0:11434"
|
||||||
OLLAMA_ORIGINS = "*"
|
OLLAMA_ORIGINS = "*"
|
||||||
OLLAMA_DEBUG = "1"
|
OLLAMA_DEBUG = "1"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user