From 208eccce466014cab62072b995adfbbf785af015 Mon Sep 17 00:00:00 2001 From: Kir Zharov Date: Thu, 27 Mar 2025 16:21:02 +0000 Subject: [PATCH 1/5] Feat: add security section with domains for whitelisting --- security/security.mdx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 security/security.mdx diff --git a/security/security.mdx b/security/security.mdx new file mode 100644 index 0000000..4526a22 --- /dev/null +++ b/security/security.mdx @@ -0,0 +1,20 @@ +--- +title: Security FAQ +--- + +### What domains should I whitelist when using Cursor behind a corporate VPN/proxy? + +If you're behind a corporate proxy, whitelist these domains to ensure that Cursor works correctly: + +- Most API requests: **api2.cursor.sh** +- Cursor Tab requests (HTTP/2 only): **api3.cursor.sh** +- Codebase indexing (HTTP/2 only): **repo42.cursor.sh** +- Cursor Tab requests depending on your location (HTTP/2 only): + - **api4.cursor.sh** + - **us-asia.gcpp.cursor.sh** + - **us-eu.gcpp.cursor.sh** + - **us-only.gcpp.cursor.sh** +- Downloading extensions from the extension marketplace: + - **marketplace.cursorapi.com** + - **cursor-cdn.com** +- Checking for and downloading updates: **download.todesktop.com** From fdac8e3ff5784c47cb6d8fbab63d8dd19ee72347 Mon Sep 17 00:00:00 2001 From: Kir Zharov Date: Thu, 27 Mar 2025 16:34:55 +0000 Subject: [PATCH 2/5] Feat: add security section to `Privacy` group --- mint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mint.json b/mint.json index 0475e75..9d6516e 100644 --- a/mint.json +++ b/mint.json @@ -128,7 +128,8 @@ { "group": "Privacy", "pages": [ - "privacy/privacy" + "privacy/privacy", + "security/security", ] }, { From d0a99ee662e76c1473e5bf368c7a11d1c90b5bf8 Mon Sep 17 00:00:00 2001 From: Kir Zharov Date: Thu, 27 Mar 2025 16:36:16 +0000 Subject: [PATCH 3/5] Fix: remove extra comma --- mint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mint.json b/mint.json index 9d6516e..f3c6c0f 100644 --- a/mint.json +++ b/mint.json @@ -129,7 +129,7 @@ "group": "Privacy", "pages": [ "privacy/privacy", - "security/security", + "security/security" ] }, { From 27e86fb1bb3d61ddfe0b8bc2f057c5e5af8656b6 Mon Sep 17 00:00:00 2001 From: Kir Zharov Date: Thu, 27 Mar 2025 16:38:37 +0000 Subject: [PATCH 4/5] Feat: move `Security FAQ` to a separate group --- mint.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mint.json b/mint.json index f3c6c0f..d53c7c9 100644 --- a/mint.json +++ b/mint.json @@ -128,7 +128,12 @@ { "group": "Privacy", "pages": [ - "privacy/privacy", + "privacy/privacy" + ] + }, + { + "group": "Security", + "pages": [ "security/security" ] }, From da284b7dbe044af3587589dd54a4f43dc9fb6152 Mon Sep 17 00:00:00 2001 From: Kir Zharov Date: Thu, 27 Mar 2025 16:39:53 +0000 Subject: [PATCH 5/5] Fix: add `https://` to all links --- security/security.mdx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/security/security.mdx b/security/security.mdx index 4526a22..fa17f60 100644 --- a/security/security.mdx +++ b/security/security.mdx @@ -6,15 +6,15 @@ title: Security FAQ If you're behind a corporate proxy, whitelist these domains to ensure that Cursor works correctly: -- Most API requests: **api2.cursor.sh** -- Cursor Tab requests (HTTP/2 only): **api3.cursor.sh** -- Codebase indexing (HTTP/2 only): **repo42.cursor.sh** +- Most API requests: **https://api2.cursor.sh** +- Cursor Tab requests (HTTP/2 only): **https://api3.cursor.sh** +- Codebase indexing (HTTP/2 only): **https://repo42.cursor.sh** - Cursor Tab requests depending on your location (HTTP/2 only): - - **api4.cursor.sh** - - **us-asia.gcpp.cursor.sh** - - **us-eu.gcpp.cursor.sh** - - **us-only.gcpp.cursor.sh** + - **https://api4.cursor.sh** + - **https://us-asia.gcpp.cursor.sh** + - **https://us-eu.gcpp.cursor.sh** + - **https://us-only.gcpp.cursor.sh** - Downloading extensions from the extension marketplace: - - **marketplace.cursorapi.com** - - **cursor-cdn.com** -- Checking for and downloading updates: **download.todesktop.com** + - **https://marketplace.cursorapi.com** + - **https://cursor-cdn.com** +- Checking for and downloading updates: **https://download.todesktop.com**