Skip to content

Commit e30b37b

Browse files
author
Paul Jaffre
authored
move ulrs to reusable partial (#5636)
1 parent c1e42f1 commit e30b37b

4 files changed

Lines changed: 27 additions & 51 deletions

File tree

docs/faq/questions/cloud-faq.mdx

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -270,31 +270,7 @@ it might be good enough for the job.
270270

271271
### <Icon name="angle-right" /> I'm working with a restrictive VPN. Which subdomains do I have to allow on my VPN for Cypress Cloud to work properly?
272272

273-
If you are running the tests from within a restrictive VPN you will need to
274-
allow some URLs so that Cypress can have effective communication with Cypress
275-
Cloud.
276-
277-
**The URLs are the following:**
278-
279-
- `https://api.cypress.io` - **Cypress API**
280-
- `https://assets.cypress.io` - **Asset CDN** (Org logos, icons, videos,
281-
screenshots, etc.)
282-
- `https://authenticate.cypress.io` - **Authentication API**
283-
- `https://capture.cypress.io` - **Cypress Test Replay**
284-
- `https://s3.amazonaws.com/capture.cypress.io` - **Uploading Cypress Test Replay from Test Runner**
285-
- `https://cloud.cypress.io` - **Cypress Cloud**
286-
- `https://docs.cypress.io` - **Cypress documentation**
287-
- `https://download.cypress.io` - **CDN download of Cypress binary**
288-
- `https://on.cypress.io` - **URL shortener for link redirects**
289-
290-
**If you are using GitHub Enterprise or GitLab for Enterprise (Self-managed),
291-
you may also need to add the following to the version control IP allowlist:**
292-
293-
- `3.211.102.119` - **Dedicated IP**
294-
- `18.213.72.78` - **Dedicated IP**
295-
- `35.169.145.173` - **Dedicated IP**
296-
- `44.199.152.70` - **Dedicated IP**
297-
- `52.70.95.89` - **Dedicated IP**
273+
<UrlAllowList />
298274

299275
## Cypress Cloud Account
300276

docs/guides/references/troubleshooting.mdx

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -215,31 +215,7 @@ To send the data and results of your tests to
215215
[Cypress Cloud](https://on.cypress.io/cloud-introduction), Cypress needs free
216216
access to some URLs.
217217

218-
If you are running the tests from within a restrictive VPN you will need to
219-
allow some URLs so that Cypress can have effective communication with Cypress
220-
Cloud.
221-
222-
**The URLs are the following:**
223-
224-
- `https://api.cypress.io` - **Cypress API**
225-
- `https://assets.cypress.io` - **Asset CDN** (Org logos, icons, videos,
226-
screenshots, etc.)
227-
- `https://authenticate.cypress.io` - **Authentication API**
228-
- `https://capture.cypress.io` - **Cypress Test Replay**
229-
- `https://s3.amazonaws.com/capture.cypress.io` - **Uploading Cypress Test Replay from Test Runner**
230-
- `https://cloud.cypress.io` - **Cypress Cloud**
231-
- `https://docs.cypress.io` - **Cypress documentation**
232-
- `https://download.cypress.io` - **CDN download of Cypress binary**
233-
- `https://on.cypress.io` - **URL shortener for link redirects**
234-
235-
**If you are using GitHub Enterprise or GitLab for Enterprise (Self-managed),
236-
you may also need to add the following to the version control IP allowlist:**
237-
238-
- `3.211.102.119` - **Dedicated IP**
239-
- `18.213.72.78` - **Dedicated IP**
240-
- `35.169.145.173` - **Dedicated IP**
241-
- `44.199.152.70` - **Dedicated IP**
242-
- `52.70.95.89` - **Dedicated IP**
218+
<UrlAllowList />
243219

244220
## Clear App Data
245221

docs/partials/_url_allowlist.mdx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
If you are running the tests from within a restrictive VPN you will need to allow some URLs so that Cypress can have effective communication with Cypress Cloud.
2+
3+
**The URLs are the following:**
4+
5+
- `https://api.cypress.io` - **Cypress API**
6+
- `https://assets.cypress.io` - **Asset CDN** (Org logos, icons, videos,
7+
screenshots, etc.)
8+
- `https://authenticate.cypress.io` - **Authentication API**
9+
- `https://capture.cypress.io` - **Cypress Test Replay**
10+
- `https://s3.amazonaws.com/capture.cypress.io` - **Uploading Cypress Test Replay from Test Runner**
11+
- `https://cloud.cypress.io` - **Cypress Cloud**
12+
- `https://docs.cypress.io` - **Cypress documentation**
13+
- `https://download.cypress.io` - **CDN download of Cypress binary**
14+
- `https://on.cypress.io` - **URL shortener for link redirects**
15+
16+
**If you are using GitHub Enterprise or GitLab for Enterprise (Self-managed), you may also need to add the following to the version control IP allowlist:**
17+
18+
- `3.211.102.119` - **Dedicated IP**
19+
- `18.213.72.78` - **Dedicated IP**
20+
- `35.169.145.173` - **Dedicated IP**
21+
- `44.199.152.70` - **Dedicated IP**
22+
- `52.70.95.89` - **Dedicated IP**

src/theme/MDXComponents.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import VideoRecordingSupportedBrowsers from "@site/docs/partials/_video-recordin
2626
import Logo from "@site/src/components/logo";
2727
import CloudFreePlan from "@site/docs/partials/_cloud_free_plan.mdx";
2828
import CiProviderCloudSteps from "@site/docs/partials/_ci_provider_cloud_steps.mdx";
29+
import UrlAllowList from "@site/docs/partials/_url_allowlist.mdx";
2930

3031
// Font Awesome
3132
import { library } from '@fortawesome/fontawesome-svg-core'
@@ -141,5 +142,6 @@ export default {
141142
VideoRecordingSupportedBrowsers,
142143
Logo,
143144
CloudFreePlan,
144-
CiProviderCloudSteps
145+
CiProviderCloudSteps,
146+
UrlAllowList
145147
}

0 commit comments

Comments
 (0)