From 56551cee24f6e4302d770534865caa33d0b90f93 Mon Sep 17 00:00:00 2001 From: Samuel Almeida Date: Wed, 11 Sep 2019 16:01:43 +0200 Subject: [PATCH] Update NO_PROXY example for Windows A wrong IP was used in the example for windows, ending in .1 instead of .0. --- site/content/en/docs/Reference/Networking/proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/en/docs/Reference/Networking/proxy.md b/site/content/en/docs/Reference/Networking/proxy.md index ef796dd637..e82fece322 100644 --- a/site/content/en/docs/Reference/Networking/proxy.md +++ b/site/content/en/docs/Reference/Networking/proxy.md @@ -40,7 +40,7 @@ To make the exported variables permanent, consider adding the declarations to ~/ ```shell set HTTP_PROXY=http:// set HTTPS_PROXY=https:// -set NO_PROXY=localhost,127.0.0.1,10.96.0.0/12,192.168.99.1/24,192.168.39.0/24 +set NO_PROXY=localhost,127.0.0.1,10.96.0.0/12,192.168.99.0/24,192.168.39.0/24 minikube start ```