From e3d77abff3d4530ec5207bb110a51f10da2b3ba5 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 3 Apr 2026 09:34:30 -0500 Subject: [PATCH] buildbot: Use IPv4 rather than 'localhost' in nginx config The buildbot service only listens on IPv4, so use that address explicitly to avoid polluting the nginx error log. --- salt/buildbot/config/nginx.conf.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/buildbot/config/nginx.conf.jinja b/salt/buildbot/config/nginx.conf.jinja index 5d3ac8d9..62803e7e 100644 --- a/salt/buildbot/config/nginx.conf.jinja +++ b/salt/buildbot/config/nginx.conf.jinja @@ -48,6 +48,6 @@ server { proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; - proxy_pass http://localhost:9010/ws; + proxy_pass http://127.0.0.1:9010/ws; } }