From a435ea77e830ef10762a7bb5b09aa7e397678f6f Mon Sep 17 00:00:00 2001 From: William Wernert Date: Thu, 4 Mar 2021 12:43:42 -0500 Subject: [PATCH] [fix] Also add hostname to no_proxy list --- setup/so-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/so-functions b/setup/so-functions index 0986c8899..ea5720a03 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -2252,7 +2252,7 @@ set_path() { set_proxy() { # Don't proxy localhost, local ip, and management ip - local no_proxy_string="localhost, 127.0.0.1, ${MAINIP}" + local no_proxy_string="localhost, 127.0.0.1, ${MAINIP}, ${HOSTNAME}" # Set proxy environment variables used by curl, wget, docker, and others {