From 7eab52e5bc356f8ff1625f824c8e79710ded876b Mon Sep 17 00:00:00 2001 From: Preston Hunter Date: Mon, 29 Dec 2025 00:19:26 -0500 Subject: [PATCH] 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. --- stacks/ai/ai-backend.nomad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks/ai/ai-backend.nomad b/stacks/ai/ai-backend.nomad index 678a8d6..367fb56 100644 --- a/stacks/ai/ai-backend.nomad +++ b/stacks/ai/ai-backend.nomad @@ -19,7 +19,7 @@ job "ai-backend" { driver = "podman" env { - OLLAMA_HOST = "0.0.0.0" + OLLAMA_HOST = "0.0.0.0:11434" OLLAMA_ORIGINS = "*" OLLAMA_DEBUG = "1"