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
I´am using ioBroker behind a proxy server due to security reasons and this module does not currently support using a proxy server which is configured via environment variable HTTPS_PROXY.
Can you please add module https-proxy-agent and use process.env.HTTP_PROXY ad proxy server.
As ioBroker does currently not support globally configuring proxies, I tried it that way and it works for most adapters, which mainly use request library.
Request library considers the proxy env variables by default. https://github.com/request/request#proxies
Unfortunately, that's not the case for other libraries like https.
For these libraries, https-proxy-agent is the answer.
Of course, a config variable is also a good solution, but then all other adapters (which need to connect to the internet) need to support these proxy config...
So the easiest solution is env variable, the better is a global proxy config which all adapters support.
Hm ... interesting - did't know that from request ... but in fact request is reprecated, so new kids on the block are axios and got and such ... not Ideas how they behave ;-)
I need to think about and especially find time :-(
I´am using ioBroker behind a proxy server due to security reasons and this module does not currently support using a proxy server which is configured via environment variable HTTPS_PROXY.
Can you please add module https-proxy-agent and use process.env.HTTP_PROXY ad proxy server.
https://www.npmjs.com/package/https-proxy-agent
The text was updated successfully, but these errors were encountered: