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
There is currently no actual config or command-line option to specify a proxy server, but you can set the HTTP_PROXY and HTTPS_PROXY environment variables and the underlying Requests library will use these.
For example:
# on unix-like systems
export HTTP_PROXY="http://10.10.1.10:3128"
# on windows
set http_proxy="http://10.10.1.10:3128"
Explicit proxy configuration done.
You can now set the proxy option in your config files (general or per-extractor) or just use the --proxy command-line argument.
For the config option you can either use a single string ("http://10.10.1.10:3128") or specify a different proxy URL per URI scheme:
Configuration file how to set the proxy?
The text was updated successfully, but these errors were encountered: