Skip to content
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

fix(docs): value must be quoted in PowerShell command to set env vars #536

Merged
merged 1 commit into from
Aug 30, 2024
Merged
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
6 changes: 3 additions & 3 deletions docs/guides/howto_use_custom_ssl_certs.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ At the shell session scope:

## Using native system certificates store

If the `QDT_SSL_USE_SYSTEM_STORES` environment variable is set to `True`, HTTPS requests rely on the native system certificates store.
If the `QDT_SSL_USE_SYSTEM_STORES` environment variable is set to `true`, HTTPS requests rely on the native system certificates store.

:::{note}
If enabled, this environment variable take precedence over `REQUESTS_CA_BUNDLE` or `CURL_CA_BUNDLE` which are ignored.
Expand All @@ -38,12 +38,12 @@ If enabled, this environment variable take precedence over `REQUESTS_CA_BUNDLE`
Only for the QDT command scope:

```powershell
$env:QDT_SSL_USE_SYSTEM_STORES=true; qdt -vvv
$env:QDT_SSL_USE_SYSTEM_STORES='true'; qdt -vvv
```

At the shell session scope:

```powershell
> $env:QDT_SSL_USE_SYSTEM_STORES=true
> $env:QDT_SSL_USE_SYSTEM_STORES='true'
> qdt -vvv
```