Skip to content

Commit

Permalink
Update NO_PROXY example for Windows
Browse files Browse the repository at this point in the history
A wrong IP was used in the example for windows, ending in .1 instead of .0.
  • Loading branch information
Samuel Almeida committed Sep 11, 2019
1 parent f36c5d8 commit 56551ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/content/en/docs/Reference/Networking/proxy.md
Expand Up @@ -40,7 +40,7 @@ To make the exported variables permanent, consider adding the declarations to ~/
```shell
set HTTP_PROXY=http://<proxy hostname:port>
set HTTPS_PROXY=https://<proxy hostname:port>
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
```
Expand Down

0 comments on commit 56551ce

Please sign in to comment.