From 999e894a9672999c64c58f6ac81d4b268e06cea4 Mon Sep 17 00:00:00 2001 From: MayaChat Date: Mon, 24 Nov 2025 13:05:51 -0500 Subject: [PATCH] Add Docker DNS resolver configuration to nginx.conf --- nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx.conf b/nginx.conf index 04bdfd3..41a9116 100644 --- a/nginx.conf +++ b/nginx.conf @@ -18,6 +18,9 @@ http { listen 80; server_name localhost; + # Docker DNS resolver + resolver 127.0.0.11 valid=30s; + # Health proxy endpoint - forwards to internal python service location /healthcheck { proxy_pass http://health-proxy:8081$request_uri;