Skip to content

Commit 672914a

Browse files
First batch of changes
1 parent b4a739f commit 672914a

File tree

13 files changed

+70
-50
lines changed

13 files changed

+70
-50
lines changed

src/content/docs/ssl/edge-certificates/additional-options/certificate-transparency-monitoring.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ CT Monitoring alerts are triggered not only by Cloudflare processes - including
3636

3737
## Opt in and out
3838

39-
Alerts are turned off by default. If you want to receive alerts, go to [**SSL/TLS** > **Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates#ct-alerting-card) and enable **Certificate Transparency Monitoring**. If you are in a Business or Enterprise zone, select **Add Email**.
39+
Alerts are turned off by default. If you want to receive alerts, go to the [**Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates#ct-alerting-card) page and enable **Certificate Transparency Monitoring**. If you are in a Business or Enterprise zone, select **Add Email**.
4040

4141
To stop receiving alerts, disable **Certificate Transparency Monitoring** or remove your email from the feature card.
4242

src/content/docs/ssl/edge-certificates/additional-options/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ sidebar:
1010

1111
import { DirectoryListing } from "~/components"
1212

13-
Once you set up SSL/TLS on your application, you can adjust the following settings in **SSL/TLS** > **Edge Certificates**:
13+
Once you set up SSL/TLS on your application, you can adjust the following settings on the [**Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates) page:
1414

1515
<DirectoryListing />

src/content/docs/ssl/edge-certificates/advanced-certificate-manager/manage-certificates.mdx

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,31 @@ description: Learn how to create, delete and perform other operations to manage
88
your Cloudflare Advanced SSL certificates.
99
---
1010

11-
import { AvailableNotifications, Render, TabItem, Tabs } from "~/components";
11+
import { AvailableNotifications, Render, TabItem, Tabs, DashButton } from "~/components";
1212

1313
## Create a certificate
1414

1515
If you are using an existing [Universal SSL certificate](/ssl/edge-certificates/universal-ssl/), Cloudflare will automatically replace this certificate once you finish ordering your advanced certificate.
1616

17-
Once you order a certificate, you can review the [certificate's status](/ssl/reference/certificate-statuses/) in the dashboard at **SSL/TLS** > **Edge Certificates** or via the API with a [GET request](/api/resources/ssl/subresources/certificate_packs/methods/list/).
17+
Once you order a certificate, you can review the [certificate's status](/ssl/reference/certificate-statuses/) on the [**Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates) page or via the API with a [GET request](/api/resources/ssl/subresources/certificate_packs/methods/list/).
1818

1919
<Tabs syncKey="dashPlusAPI"> <TabItem label="Dashboard">
2020

2121
To create a new advanced certificate in the dashboard:
2222

23-
1. Log in to your Cloudflare account and select a domain.
24-
2. Go to **SSL/TLS** > **Edge Certificates**.
25-
3. Select **Order Advanced Certificate**.
26-
4. If Cloudflare does not have your billing information, you will need to enter that information.
27-
5. Enter the following information:
23+
1. In the Cloudflare dashboard, go to the **Edge Certificates** page.
24+
25+
<DashButton url="/?to=/:account/:zone/ssl-tls/edge-certificates" />
26+
27+
2. Select **Order Advanced Certificate**.
28+
3. If Cloudflare does not have your billing information, you will need to enter that information.
29+
4. Enter the following information:
2830
- Certificate authority
2931
- Certificate hostnames
3032
- For hostnames longer than 64 characters, use the API.
3133
- Validation method
3234
- Certificate validity period
33-
6. Select **Save**.
35+
5. Select **Save**.
3436

3537
</TabItem> <TabItem label="API">
3638

@@ -54,10 +56,12 @@ If you need certificates for hostnames longer than 64 characters ([RFC 5280](htt
5456

5557
To delete an advanced certificate in the dashboard:
5658

57-
1. Log in to your Cloudflare account and select a domain.
58-
2. Select **SSL/TLS** > **Edge Certificates**.
59-
3. Select a certificate.
60-
4. Select **Delete Certificate**.
59+
1. In the Cloudflare dashboard, go to the **Edge Certificates** page.
60+
61+
<DashButton url="/?to=/:account/:zone/ssl-tls/edge-certificates" />
62+
63+
2. Select a certificate.
64+
3. Select **Delete Certificate**.
6165

6266
</TabItem> <TabItem label="API">
6367

src/content/docs/ssl/edge-certificates/caa-records.mdx

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar:
55
order: 6
66
---
77

8-
import { Render, TabItem, Tabs } from "~/components";
8+
import { Render, TabItem, Tabs, DashButton } from "~/components";
99

1010
<Render file="caa-records-definition" product="ssl" /> <br />
1111

@@ -38,15 +38,17 @@ Create a CAA record for each Certificate Authority (CA) that you plan to use for
3838

3939
To add a CAA record in the dashboard,
4040

41-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select your account and application.
42-
2. Go to **DNS** > **Records**.
43-
3. Select **Add record**.
44-
4. For **Type**, select **CAA**.
45-
5. For **Name**, type your domain.
46-
6. Choose a **Tag**, which specifies the behavior associated with the record.
47-
7. For **CA domain name**, enter the CA name.
48-
8. Select **Save**.
49-
9. Repeat for each CA associated with your domain.
41+
1. In the Cloudflare dashboard, go to the **DNS Records** page.
42+
43+
<DashButton url="/?to=/:account/:zone/dns/records" />
44+
45+
2. Select **Add record**.
46+
3. For **Type**, select **CAA**.
47+
4. For **Name**, type your domain.
48+
5. Choose a **Tag**, which specifies the behavior associated with the record.
49+
6. For **CA domain name**, enter the CA name.
50+
7. Select **Save**.
51+
8. Repeat for each CA associated with your domain.
5052

5153
</TabItem> <TabItem label="API">
5254

src/content/docs/ssl/edge-certificates/changing-dcv-method/methods/delegated-dcv.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ As explained in the [announcement blog post](https://blog.cloudflare.com/introdu
4545
To set up Delegated DCV:
4646

4747
1. Order an [advanced certificate](/ssl/edge-certificates/advanced-certificate-manager/manage-certificates/) for your zone, choosing `TXT` as the **Certificate validation method**.
48-
2. On **SSL/TLS** > **Edge Certificates**, go to **DCV Delegation for Partial Zones**.
48+
2. On the [**Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates) page, go to **DCV Delegation for Partial Zones**.
4949
3. Copy the Cloudflare validation URL.
5050
4. At your authoritative DNS provider, create `CNAME` record(s) considering the following:
5151

src/content/docs/ssl/edge-certificates/changing-dcv-method/methods/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ For guidance on when you need to perform DCV, refer to [Domain Control Validatio
3030

3131
## Verify DCV status
3232

33-
To verify the [DCV status](/ssl/reference/certificate-statuses/) of a certificate, either monitor the certificate's status in the dashboard at **SSL/TLS** > **Edge Certificates** or use the [Verification Status endpoint](/api/resources/ssl/subresources/verification/methods/get/).
33+
To verify the [DCV status](/ssl/reference/certificate-statuses/) of a certificate, either monitor the certificate's status on the [**Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates) page or use the [Verification Status endpoint](/api/resources/ssl/subresources/verification/methods/get/).
3434

3535
A status of `active` means that the certificate has been deployed to Cloudflare’s global network and will be served as soon as HTTP traffic is proxied to Cloudflare.
3636

src/content/docs/ssl/edge-certificates/custom-certificates/renewing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ For example if you have a custom certificate made of an ECSDA and a RSA certific
4444

4545
If you no longer want to use your custom certificate but still want your website or application to be covered with SSL/TLS, you can do the following:
4646

47-
1. Go to [**SSL/TLS** > **Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates).
47+
1. Go to the [**Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates) page.
4848
2. Make sure there is already an active [universal](/ssl/edge-certificates/universal-ssl/) or [advanced](/ssl/edge-certificates/advanced-certificate-manager/) certificate covering the same hostnames.
4949
3. Delete your custom certificate.

src/content/docs/ssl/edge-certificates/custom-certificates/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ If you try to upload a certificate **type** but have already reached your quota,
9999

100100
**Solution**
101101

102-
First, check your custom certificate entitlements at **SSL/TLS** > **Edge Certificates**.
102+
First, check your custom certificate entitlements on the [**Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates) page.
103103

104104
Then, when actually uploading or editing the certificate, make sure you select the appropriate option for **Legacy Client Support**.
105105

src/content/docs/ssl/edge-certificates/custom-certificates/uploading.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ For more guidance, refer to [Create a CAA record](/ssl/edge-certificates/caa-rec
165165

166166
## Update an existing custom certificate
167167

168-
Before you update an existing custom certificate, you might want to consider having active [universal](/ssl/edge-certificates/universal-ssl/) or [advanced](/ssl/edge-certificates/advanced-certificate-manager/) certificates as fallback options. Go to [**SSL/TLS** > **Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates) to check a list of hostnames and status of the edge certificates in your zone.
168+
Before you update an existing custom certificate, you might want to consider having active [universal](/ssl/edge-certificates/universal-ssl/) or [advanced](/ssl/edge-certificates/advanced-certificate-manager/) certificates as fallback options. Go to the [**Edge Certificates**](https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls/edge-certificates) page to check a list of hostnames and status of the edge certificates in your zone.
169169

170170
If you are on an Enterprise plan and want to update a custom (modern) certificate, also consider requesting access to [Staging environment (Beta)](/ssl/edge-certificates/staging-environment/).
171171

src/content/docs/ssl/edge-certificates/ech.mdx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ sidebar:
88

99
---
1010

11+
import { DashButton } from "~/components";
12+
1113
ECH stands for [Encrypted Client Hello](https://datatracker.ietf.org/doc/draft-ietf-tls-esni/16/). It is a protocol extension in the context of Transport Layer Security (TLS). ECH encrypts part of the handshake and masks the Server Name Indication (SNI) that is used to negotiate a TLS session. This means that whenever a user visits a website on Cloudflare that has ECH enabled, intermediaries will be able to see that you are visiting a website on Cloudflare, but they will not be able to determine which one.
1214

1315
## What ECH does
@@ -47,10 +49,11 @@ For more details about ECH protocol technology, refer to our [introductory blog]
4749

4850
ECH is enabled by default on Free zones. Other plans can turn it on or off following the steps below.
4951

50-
1. Log into the [Cloudflare dashboard](https://dash.cloudflare.com).
51-
2. Select your account and zone.
52-
3. Go to **SSL** > **Edge Certificates**.
53-
4. For **Encrypted ClientHello (ECH)**, change the setting to **Enabled**.
52+
1. In the Cloudflare dashboard, go to the **Edge Certificates** page.
53+
54+
<DashButton url="/?to=/:account/:zone/ssl-tls/edge-certificates" />
55+
56+
2. For **Encrypted ClientHello (ECH)**, change the setting to **Enabled**.
5457

5558
## Enterprise network applicability
5659

0 commit comments

Comments
 (0)