-
Notifications
You must be signed in to change notification settings - Fork 69
Batch Explorer behind proxy(Version 0.13.0 and above)
ascobie edited this page Feb 19, 2019
·
1 revision
Added in Version 0.13.0
Batch Explorer should be able to detect system proxy settings on windows and prompt you for credentials if needed.
If for some reason this doesn't work, you can also set the HTTP_PROXY
and HTTPS_PROXY
environment variables(See OSX and Linux section)
You will need to set HTTP_PROXY
and HTTPS_PROXY
environment variables and Batch Explorer will use those settings.
Format of the variable is
- Without credentials:
http://PROXY_HOST:PROXY_PORT
, e.g.http://127.0.0.1:8888
- With credentials:
http://USERNAME:PASSWORD@PROXY_HOST:PROXY_PORT
, e.g.http://abc:123@127.0.0.1:8888