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
It is currently not possible to use threema-gateway with a web proxy, as aiohttp does not check the $https_proxy environment variable unless it is explicitly told to do so.
threema-gateway could either allow to submit the web proxy setting as command line option and pass it to aiohttp, or it could use trust_env to let aiohttp use $https_proxy.
It works for me by changing gateway/_gateway.py and pass trust_env=True to aiohttp:
It is currently not possible to use threema-gateway with a web proxy, as aiohttp does not check the $https_proxy environment variable unless it is explicitly told to do so.
See aiohttp documentation: https://docs.aiohttp.org/en/stable/client_advanced.html?highlight=proxy
threema-gateway could either allow to submit the web proxy setting as command line option and pass it to aiohttp, or it could use trust_env to let aiohttp use $https_proxy.
It works for me by changing
gateway/_gateway.py
and pass trust_env=True to aiohttp:That way, aiohttp is instructed to use $https_proxy.
The text was updated successfully, but these errors were encountered: