Skip to content

Commit b5328fc

Browse files
committed
Update Python
1 parent 6a1ea40 commit b5328fc

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

src/content/docs/cloudflare-one/connections/connect-devices/warp/user-side-certificates/install-cloudflare-cert.mdx

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -315,16 +315,10 @@ For information on installing the Cloudflare certificate for organizations, refe
315315

316316
The command to install the certificate with Python on Windows automatically includes `pip` and `certifi` (the default certificate bundle for certificate validation).
317317

318-
1. In a PowerShell terminal, download the Cloudflare root certificate:
319-
320-
```powershell
321-
curl.exe -o Cloudflare_CA.crt https://developers.cloudflare.com/cloudflare-one/static/Cloudflare_CA.crt
322-
```
323-
318+
1. [Download the Cloudflare certificate](#download-the-cloudflare-root-certificate) in `.crt` format.
324319
2. Update the bundle to include the Cloudflare certificate:
325-
326320
```powershell
327-
gc .\Cloudflare_CA.crt | ac C:\Python37\Lib\site-packages\pip\_vendor\certifi\cacert.pem
321+
gc "$env:USERPROFILE\Downloads\Cloudflare_CA.crt" | ac C:\Python37\Lib\site-packages\pip\_vendor\certifi\cacert.pem
328322
```
329323

330324
#### Python on Mac and Linux
@@ -345,11 +339,7 @@ The command to install the certificate with Python on Windows automatically incl
345339
~/Library/Python/3.7/lib/python/site-packages/certifi/cert.pem
346340
```
347341

348-
3. Download the Cloudflare root certificate:
349-
350-
```sh
351-
wget https://developers.cloudflare.com/cloudflare-one/static/Cloudflare_CA.pem
352-
```
342+
3. [Download the Cloudflare certificate](#download-the-cloudflare-root-certificate) in `.pem` format.
353343

354344
4. Append the Cloudflare certificate to this CA store by running:
355345

0 commit comments

Comments
 (0)