Skip to content

Commit d7c9fd9

Browse files
Fill in pqc and forward-client-cert partial
1 parent 8d7717a commit d7c9fd9

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

src/content/docs/ssl/post-quantum-cryptography/pqc-to-origin.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,11 @@ curl --request PUT \
4747
```
4848

4949
<APIRequest
50-
path=""
51-
method=""
52-
json={{}}
50+
path="/zones/{zone_id}/cache/origin_post_quantum_encryption"
51+
method="PUT"
52+
json={{
53+
"value": "<YOUR_CHOSEN_SETTING>"
54+
}}
5355
/>
5456

5557
The possible values are:

src/content/partials/ssl/forward-client-certificate.mdx

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,20 @@ https://api.cloudflare.com/client/v4/zones/{zone_id}/access/certificates/setting
3737
```
3838

3939
<APIRequest
40-
path=""
41-
method=""
42-
json={{}}
40+
path="/zones/{zone_id}/access/certificates/settings"
41+
method="PUT"
42+
json={{
43+
"settings": [
44+
{
45+
"hostname": "<HOSTNAME>",
46+
"china_network": false,
47+
"client_certificate_forwarding": true
48+
}
49+
]
50+
}}
51+
code={{
52+
mark: [10]
53+
}}
4354
/>
4455

4556

0 commit comments

Comments
 (0)