1
0
mirror of synced 2025-12-19 09:57:42 -05:00

Improve documentation for using Copilot coding agent with self-hosted runners (#58949)

Co-authored-by: hubwriter <hubwriter@github.com>
This commit is contained in:
Tim Rogers
2025-12-18 15:28:14 +00:00
committed by GitHub
parent f6a6301f3e
commit ec7e64f0d5
3 changed files with 26 additions and 15 deletions

View File

@@ -0,0 +1,5 @@
| Variable | Description | Example |
| ------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
| `https_proxy` | Proxy URL for HTTPS traffic. You can include basic authentication if required. | `http://proxy.local`<br>`http://192.168.1.1:8080`<br>`http://username:password@proxy.local` |
| `http_proxy` | Proxy URL for HTTP traffic. You can include basic authentication if required. | `http://proxy.local`<br>`http://192.168.1.1:8080`<br>`http://username:password@proxy.local` |
| `no_proxy` | A comma-separated list of hosts or IP addresses that should bypass the proxy. Some clients only honor IP addresses when connections are made directly to the IP rather than a hostname. | `example.com`<br>`example.com,myserver.local:443,example.org` |