Skip to content

Commit

Permalink
Add proxy usage
Browse files Browse the repository at this point in the history
  • Loading branch information
gehaxelt committed May 5, 2021
1 parent 24eaef0 commit 9f1820d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Expand Up @@ -96,6 +96,29 @@ Here's a small demo of the **Dumper** tool:

[![asciicast](https://asciinema.org/a/24072.png)](https://asciinema.org/a/24072)

## Proxy support

The `urllib` and `curl` should support proxy configuration through environment variables:

In bash, set:

```
export HTTP_PROXY=http://proxy_url:proxy_port
export HTTPS_PROXY=http://proxy_url:proxy_port
```

In Window's CMD, use:

```
set HTTP_PROXY=http://proxy_url:proxy_port
set HTTPS_PROXY=http://proxy_url:proxy_port
```

Basic auth should be supported with:

```
http://username:password@proxy_url:proxy_port
```

## Requirements
* git
Expand Down

0 comments on commit 9f1820d

Please sign in to comment.