HTTP Proxy Not Working

I have added the HTTP Proxy into the docker.env file and can communicate with the licence server during start up.

However, when I create a REST resource trying to connect to an endpoint in the internet, it doesn't seem to be using the http proxy setting because the error message is saying can't resolve the address. This is an indication the connection is not going through the corporate http proxy server.

Please advise how to resolve this problem.
Thanks

Hey @yapne!

Happy to help here! would you mind messaging into support chat to share your docker.env file settings and some of these error messages?

I am having a similar issue, getting a "network timeout" error with the REST query example from the doc page.

FetchError: network timeout at: https://httpbin.org/get?id=1\n at Timeout.<anonymous> (/snapshot/retool_development/node_modules/node-fetch/lib/index.js:1484:13

Version 2.106.4

HTTP_PROXY is set and shown on the Retool Settings page "On Prem Environment". Communication with the license server also works during startup. When checking the communication after running the query, the request doesn't seem to go through the corporate proxy.

From the retool container this test works:
node -e "require('./common/fetch.js')('https://httpbin.org/get?id=1').then((r) => console.log(r));"

Your script in the container sets the proxy, but doesn't seem to be used by the backend.

Thanks,
Maike

Hey @maili!

Thanks for surfacing this. Currently, only a small amount of egress calls respect the HTTP_PROXY environment variable, but the devs are looking to make it so that all egress requests do. The fix should be shipping with our next release (version 2.110)!

Our case is quite different.

We upgrade version 2.110.2 in yestaerday.
after that our restapi are almost down, not work anymore

It affected by @Kabirdas's says 'all egress requests do'

Our system mainly in on-promise internal network
also almost of restapi are too.

We need on a few case to use proxy such as 'communicate with the licence server during start up' or several restapi on public

So we gonna use no_porxy settings but there is no doc or guide on retool docs

Plz check this situation too.
We need more smart way to do better for customer such like our situation


work around

  1. add 2 lines in docker.env

    • HTTP_PROXY_STRICT=false
      • if do not change this option backend can be connected but retool isn't
        @Kabirdas Are there No information HTTP_PROXY_STRICT in docs
    • NO_PROXY=localhost,ip,ip,ip,...
  2. restart retool

Hi @Supecial-kim!

Thanks for flagging this here. The HTTP_PROXY_STRICT is specifically for backwards compatibility for use cases like yours where the change causes issues. If you used only the NO_PROXY variable without setting HTTP_PROXY_STRICT=false where specifically are you running into issues?

I'll bring it up with the team to include better documentation on these variables!