Skip to content

Update Configuring your proxy server or firewall for Copilot #38683

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,59 @@ shortTitle: Allow Copilot traffic

If your company employs security measures like a firewall or proxy server, you should add the following URLs, ports, and protocols to an allowlist to ensure {% data variables.product.prodname_copilot_short %} works as expected:

## GitHub Enterprise Related URLs
| Domain and/or URL | Purpose |
| :------------------------------------- | :--------------------------------- |
| `https://github.com/login/*` | Authentication |
| `https://github.com/YOUR-ENTERPRISE/*` | Enterprise URL |
Copy link
Preview

Copilot AI Jun 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a brief note or comment in the documentation explaining the purpose of including both '/' and '?' patterns for enterprise URLs to aid readers in understanding the matching logic.

Copilot uses AI. Check for mistakes.

| `https://github.com/YOUR-ENTERPRISE?*` | Enterprise URL |
| `https://github.com/enterprises/YOUR-ENTERPRISE/*` | Authentication for {% data variables.enterprise.prodname_managed_users %}, only required with {% data variables.product.prodname_emus %} |
| `https://api.github.com/user` | User Management |

## GitHub Public URLs
| Domain and/or URL | Purpose |
| :------------------------------------- | :--------------------------------- |
| `https://github.com/login/*` | Authentication, only required with Personal Users |
| `https://github.com/login?*` | Authentication, only required with Personal Users |
| `https://github.com/login/oauth/*` | Authentication, only required with {% data variables.product.prodname_emus %} |
| `https://api.github.com/user/*` | User Management |
| `https://github.com/favicon.ico` | Icon |
| `https://github.com/account/*` | Account |
| `https://github.com/settings/*` | Settings |
| `https://avatars.githubusercontent.com/*` | Avatars |
| `https://github.com/copilot/*` | Copilot |
| `https://raw.githubusercontent.com/*` | Raw Content |
| `https://github.githubassets.com/*` | GitHub Assets |
| `https://collector.github.com/*` | Collector |
| `https://github.com/github-copilot/*` | GitHub Copilot |
| `https://api.github.com/*` | API |
| `https://github.com/notifications/*` | Notifications |
| `https://github.com/session/*` | Session |
| `https://github.com/dashboard/*` | Dashboard |
| `https://github.com/dashboard?*` | Dashboard |
| `https://github.com/logout/*` | Logout |
| `https://github.com/logout?*` | Logout |
| `https://github.com/switch_account?*` | Switch Account |
| `https://github.com/switch_account/*` | Switch Account |

## GitHub Copilot Related URLs
| Domain and/or URL | Purpose |
| :------------------------------------- | :--------------------------------- |
| `https://api.github.com/copilot_internal/*` | User Management |
| `https://copilot-telemetry.githubusercontent.com/telemetry` | Telemetry |
| `https://default.exp-tas.com` | Telemetry |
| `https://copilot-proxy.githubusercontent.com` | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://origin-tracker.githubusercontent.com` | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://*.githubcopilot.com`[^1] | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://*.individual.githubcopilot.com`[^2] | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://*.business.githubcopilot.com`[^3] | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://*.enterprise.githubcopilot.com`[^4] | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://copilot-telemetry.githubusercontent.com/telemetry/*` | Telemetry |
| `https://default.exp-tas.com/*` | Telemetry |
| `https://copilot-proxy.githubusercontent.com/*` | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://origin-tracker.githubusercontent.com/*` | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://*.githubcopilot.com/*`[^1] | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://*.individual.githubcopilot.com/*`[^2] | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://*.business.githubcopilot.com/*`[^3] | API service for {% data variables.product.prodname_copilot_short %} suggestions |
| `https://*.enterprise.githubcopilot.com/*`[^4] | API service for {% data variables.product.prodname_copilot_short %} suggestions |


If your organization is using Microsoft Extra ID, you also need to add the following URLs to the allowlist:
- `https://login.microsoftonline.com/*`
- `https://aadcdn.msauth.net/*`
- `https://login.live.com/*`
- `https://*.activedirectory.windowsazure.com/*`


Depending on the security policies and editors your organization uses, you may need to allowlist additional domains and URLs. For more information on specific editors, see [Further reading](#further-reading).

Expand Down
Loading