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:
2025-12-29 00:19:26 -05:00
parent 437c81b9e6
commit 7eab52e5bc

View File

@@ -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"