You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes we have a computer behind a proxy, and we want to send queries to localhost.
However, when the http_proxy environment variable is set, such requests are sent to the proxy... (which is also a security issue...).
Could it be possible to add an option to Deno.CreateHttpClientOptions, in order to disable the system's proxy ?
This could be one of the following (I do not know which one would be the best):
Deno.createHttpClient({proxy: "inherit"});// default, what we already do when proxy is not setDeno.createHttpClient({proxy: "disable"});// new behaviour being requestedDeno.createHttpClient({proxy: {url: "..."}});// existing behaviour, use a different proxy
Hi,
Sometimes we have a computer behind a proxy, and we want to send queries to
localhost
.However, when the
http_proxy
environment variable is set, such requests are sent to the proxy... (which is also a security issue...).Could it be possible to add an option to
Deno.CreateHttpClientOptions
, in order to disable the system's proxy ?This could be one of the following (I do not know which one would be the best):
Cordially,
The text was updated successfully, but these errors were encountered: