From fb2ba6d89f4fc0aa47db4e12a349c0ab252afbb0 Mon Sep 17 00:00:00 2001 From: Rajashree Mandaogane Date: Thu, 30 Sep 2021 14:02:48 -0700 Subject: [PATCH 1/3] Add noProxy setting example --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aa6a807721b..5eeb7e05aaf 100644 --- a/README.md +++ b/README.md @@ -453,7 +453,11 @@ These settings will configure the proxying behavior of the following services: * [ecs.service](packages/ecs-agent/ecs.service) * `settings.network.https-proxy`: The HTTPS proxy server to be used by services listed above. -* `settings.network.no-proxy`: A list of hosts that are excluded from proxying. +* `settings.network.no-proxy`: A list of hosts that are excluded from proxying. + Example: + ``` + settings.network.no-proxy = ["localhost","127.0.0.1"] + ``` The no-proxy list will automatically include entries for localhost. From c779fd89912af8f36f7481f75d1e5bfc9e192e4a Mon Sep 17 00:00:00 2001 From: Rajashree Mandaogane Date: Mon, 4 Oct 2021 12:56:12 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5eeb7e05aaf..4dc248ba8de 100644 --- a/README.md +++ b/README.md @@ -456,6 +456,7 @@ These settings will configure the proxying behavior of the following services: * `settings.network.no-proxy`: A list of hosts that are excluded from proxying. Example: ``` + settings.network.https-proxy = "1.2.3.4" settings.network.no-proxy = ["localhost","127.0.0.1"] ``` From ff2b10faae8e5d53f55da421210c6187bb7c3be7 Mon Sep 17 00:00:00 2001 From: Rajashree Mandaogane Date: Tue, 1 Feb 2022 10:31:24 -0800 Subject: [PATCH 3/3] Update README.md Co-authored-by: Tom Kirchner --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4dc248ba8de..45ea389d0c3 100644 --- a/README.md +++ b/README.md @@ -456,8 +456,9 @@ These settings will configure the proxying behavior of the following services: * `settings.network.no-proxy`: A list of hosts that are excluded from proxying. Example: ``` - settings.network.https-proxy = "1.2.3.4" - settings.network.no-proxy = ["localhost","127.0.0.1"] + [settings.network] + https-proxy = "1.2.3.4:8080" + no-proxy = ["localhost", "127.0.0.1"] ``` The no-proxy list will automatically include entries for localhost.