From 19c5366f02ec8a2f7738faa16096bc96109109c2 Mon Sep 17 00:00:00 2001 From: Wouter Claeys Date: Fri, 3 Oct 2025 09:00:50 +0200 Subject: [PATCH] Update noProxy list in index.mdx With the new changes in 25.9.0 it seems we should add pgbouncer and seaweedfs to the no proxy list as well. --- develop-docs/self-hosted/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/develop-docs/self-hosted/index.mdx b/develop-docs/self-hosted/index.mdx index 9af4c63f452b6d..23b9de96e3061a 100644 --- a/develop-docs/self-hosted/index.mdx +++ b/develop-docs/self-hosted/index.mdx @@ -138,7 +138,7 @@ By default Sentry sends anonymous usage statistics to the Sentry team. It helps "proxies": { "httpProxy": "http://proxy:3128", "httpsProxy": "http://proxy:3128", - "noProxy": "smtp,memcached,redis,postgres,kafka,clickhouse,snuba-api,symbolicator,web,worker,nginx,relay,vroom,taskbroker,172.17.0.0/16,127.0.0.0/8" + "noProxy": "smtp,memcached,redis,postgres,pgbouncer,kafka,clickhouse,seaweedfs,snuba-api,symbolicator,web,worker,nginx,relay,vroom,taskbroker,172.17.0.0/16,127.0.0.0/8" } } ```