From b2c3cba369a951ca232e78ddb979b865cd402144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Bernardo=20Oliveira?= <148236158+inoa-jboliveira@users.noreply.github.com> Date: Thu, 4 Dec 2025 11:28:37 -0300 Subject: [PATCH 1/3] Add resolver and zone configuration to nginx.conf --- nginx.conf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 95e96226c1c..35e3e645687 100644 --- a/nginx.conf +++ b/nginx.conf @@ -65,13 +65,17 @@ http { proxy_read_timeout 30s; proxy_send_timeout 5s; + resolver 127.0.0.11 valid=30s; + upstream relay { - server relay:3000; + zone lb_zone 64k; + server relay:3000 resolve; keepalive 2; } upstream sentry { - server web:9000; + zone lb_zone 64k; + server web:9000 resolve; keepalive 2; } From 2806b32118ca1b03aa3196e9fc8444a6c98b4da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Bernardo=20Oliveira?= <148236158+inoa-jboliveira@users.noreply.github.com> Date: Thu, 4 Dec 2025 11:42:54 -0300 Subject: [PATCH 2/3] Update nginx.conf --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 35e3e645687..98e778d9d4f 100644 --- a/nginx.conf +++ b/nginx.conf @@ -68,7 +68,7 @@ http { resolver 127.0.0.11 valid=30s; upstream relay { - zone lb_zone 64k; + zone lb_zone_relay 64k; server relay:3000 resolve; keepalive 2; } From 62c6c20fd7bbef1724aaad6e832990a69bb7013d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Bernardo=20Oliveira?= <148236158+inoa-jboliveira@users.noreply.github.com> Date: Thu, 4 Dec 2025 11:43:00 -0300 Subject: [PATCH 3/3] Update nginx.conf --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 98e778d9d4f..ab546dcb4ae 100644 --- a/nginx.conf +++ b/nginx.conf @@ -74,7 +74,7 @@ http { } upstream sentry { - zone lb_zone 64k; + zone lb_zone_web 64k; server web:9000 resolve; keepalive 2; }