Is there an existing issue for this?
SubTasks
When a proxy is configured, we never want to have local requests (like requests from backend to Keycloak etc.) to go via the proxy. They should be executed directly.
To do this, we need 127.0.0.1 to be included in the NO_PROXY env variable. This is indeed there by default. But if the user customizes the value of NO_PROXY, to set it to some of their own hostnames, then 127.0.0.1 is not included.
We need to fix this by ensuring that 127.0.0.1 is always present in NO_PROXY, whether there's a custom value set to it or not.
Is there an existing issue for this?
SubTasks
When a proxy is configured, we never want to have local requests (like requests from backend to Keycloak etc.) to go via the proxy. They should be executed directly.
To do this, we need
127.0.0.1to be included in theNO_PROXYenv variable. This is indeed there by default. But if the user customizes the value ofNO_PROXY, to set it to some of their own hostnames, then127.0.0.1is not included.We need to fix this by ensuring that
127.0.0.1is always present inNO_PROXY, whether there's a custom value set to it or not.