From 490174ab71a7ea15632ff1f632b8226fa9c662cd Mon Sep 17 00:00:00 2001 From: Carlo Costino Date: Mon, 22 Jan 2024 15:36:00 -0500 Subject: [PATCH] Add no_proxy environment variable This changeset adds the no_proxy environment variable to be set at the time our app runs to exclude the internal apps running within our platform that are handled by Cloud Foundry network policies instead. Without this in place, the egress proxy will not allow our deployed apps to talk with one another. Signed-off-by: Carlo Costino --- .profile | 1 + 1 file changed, 1 insertion(+) diff --git a/.profile b/.profile index e14df8951..6a37f1caf 100644 --- a/.profile +++ b/.profile @@ -6,3 +6,4 @@ export NEW_RELIC_PROXY_HOST=$egress_proxy export http_proxy=$egress_proxy export https_proxy=$egress_proxy +export no_proxy="apps.internal"