Skip to content

Commit f142235

Browse files
committed
Add optional path step
1 parent 6c5e116 commit f142235

File tree

1 file changed

+2
-2
lines changed
  • src/content/docs/cloudflare-one/connections/connect-devices/warp/user-side-certificates

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ The command to install the certificate with Python on Windows automatically incl
324324
```powershell
325325
gc "$env:USERPROFILE\Downloads\certificate.crt" | ac $CERT_PATH
326326
```
327-
5. If needed, configure system variables to point to this CA store by adding them to PowerShell's configuration file:
327+
5. (Optional) Configure your system variables to point to the CA store by adding them to PowerShell's configuration file:
328328
```powershell
329329
[System.Environment]::SetEnvironmentVariable('CERT_PATH', $CERT_PATH, 'Machine')
330330
[System.Environment]::SetEnvironmentVariable('SSL_CERT_FILE', $CERT_PATH, 'Machine')
@@ -343,7 +343,7 @@ The command to install the certificate with Python on Windows automatically incl
343343
```sh
344344
echo | cat - certificate.pem >> $(python -m certifi)
345345
```
346-
4. If needed, configure system variables to point to this CA store by adding them to your shell's configuration file (such as `~/.zshrc` or `~/.bash_profile`). For example:
346+
4. (Optional) Configure your system variables to point to the CA store by adding them to your shell's configuration file (such as `~/.zshrc` or `~/.bash_profile`). For example:
347347
```sh
348348
echo 'export CERT_PATH=$(python -c "import certifi; print(certifi.where())")
349349
export SSL_CERT_FILE=${CERT_PATH}

0 commit comments

Comments
 (0)