We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24eaef0 commit 9f1820dCopy full SHA for 9f1820d
README.md
@@ -96,6 +96,29 @@ Here's a small demo of the **Dumper** tool:
96
97
[](https://asciinema.org/a/24072)
98
99
+## Proxy support
100
+
101
+The `urllib` and `curl` should support proxy configuration through environment variables:
102
103
+In bash, set:
104
105
+```
106
+export HTTP_PROXY=http://proxy_url:proxy_port
107
+export HTTPS_PROXY=http://proxy_url:proxy_port
108
109
110
+In Window's CMD, use:
111
112
113
+set HTTP_PROXY=http://proxy_url:proxy_port
114
+set HTTPS_PROXY=http://proxy_url:proxy_port
115
116
117
+Basic auth should be supported with:
118
119
120
+http://username:password@proxy_url:proxy_port
121
122
123
## Requirements
124
* git
0 commit comments