Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,3 +289,21 @@ repo = icechunk.Repository.open(
authorize_virtual_chunk_access=credentials,
)
```

## Proxy configuration

Icechunk supports routing its requests through a proxy. This is useful when your object storage service itself is behind a proxy.

Icechunk automatically detects proxy settings from environment variables:

```bash
export HTTPS_PROXY=http://proxy.corp.com:8080
export HTTP_PROXY=http://proxy.corp.com:8080
```

No code changes are required. Icechunk checks proxy sources in this order:
1. `HTTPS_PROXY` / `https_proxy` - highest priority
2. `HTTP_PROXY` / `http_proxy`
3. `ALL_PROXY` / `all_proxy`

Note that you must set the environment variable at the OS level, not via the python interpreter.
Loading