File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,18 +40,26 @@ sudo cp ca.crt /usr/local/share/ca-certificates/proxyclawd.crt
4040sudo update-ca-certificates
4141```
4242
43- ** Or without root (simplest ):**
43+ ** Linux/macOS (no root required ):**
4444``` bash
4545export NODE_EXTRA_CA_CERTS=$( pwd) /ca.crt
4646```
4747
48- 3 . Run Claude Code through the proxy:
48+ 3 . Run Claude Code through the proxy (in a separate terminal) :
4949
50+ ** Linux/macOS:**
5051``` bash
5152HTTPS_PROXY=http://127.0.0.1:8080 NODE_EXTRA_CA_CERTS=$( pwd) /ca.crt claude
5253```
5354
54- 4 . Press Enter to launch the TUI and watch requests in real time.
55+ ** Windows (PowerShell):**
56+ ``` powershell
57+ $env:HTTPS_PROXY = "http://127.0.0.1:8080"
58+ $env:NODE_EXTRA_CA_CERTS = "$pwd\ca.crt"
59+ claude
60+ ```
61+
62+ 4 . Press Enter in the proxy terminal to launch the TUI and watch requests in real time.
5563
5664## TUI Controls
5765
You can’t perform that action at this time.
0 commit comments