From 2487717aaf3b9a1acc97d04aaf01a37e1157b20d Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Mon, 7 Oct 2024 13:05:45 +0100 Subject: [PATCH] fix(ollama): DNS resolution in LAN --- hosts/architect/llm.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/architect/llm.nix b/hosts/architect/llm.nix index 4e5a3c4..3b9bf02 100644 --- a/hosts/architect/llm.nix +++ b/hosts/architect/llm.nix @@ -27,7 +27,7 @@ in }; architect.vhost.${frontendDomain} = { - dnsInterfaces = [ "tailscale" ]; + dnsInterfaces = [ "tailscale" "lan" ]; locations."/" = { host = "127.0.0.1"; @@ -41,7 +41,7 @@ in }; architect.vhost.${backendDomain} = { - dnsInterfaces = [ "tailscale" ]; + dnsInterfaces = [ "tailscale" "lan" ]; locations."/" = { host = "127.0.0.1";