From cb3d6f64a6b0a1d3f0c8b693fac8fa6242fa6ad0 Mon Sep 17 00:00:00 2001 From: Hoai-Thu Vuong Date: Wed, 10 Dec 2025 16:14:16 +0700 Subject: [PATCH] fix proxies config base on docker documents Signed-off-by: Hoai-Thu Vuong --- develop-docs/self-hosted/index.mdx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/develop-docs/self-hosted/index.mdx b/develop-docs/self-hosted/index.mdx index bb6a3f3e86e14..f3a2b1d5a11c3 100644 --- a/develop-docs/self-hosted/index.mdx +++ b/develop-docs/self-hosted/index.mdx @@ -139,9 +139,11 @@ By default Sentry sends anonymous usage statistics to the Sentry team. It helps ```json { "proxies": { - "httpProxy": "http://proxy:3128", - "httpsProxy": "http://proxy:3128", - "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" + "default": { + "httpProxy": "http://proxy:3128", + "httpsProxy": "http://proxy:3128", + "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" + } } } ```