Skip to content

Commit 5257b67

Browse files
Second pass, avoiding OL formatting if single line
1 parent 01d42d6 commit 5257b67

File tree

8 files changed

+62
-47
lines changed

8 files changed

+62
-47
lines changed

src/content/docs/dns/additional-options/analytics.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar:
66

77
---
88

9-
import { FeatureTable, Details } from "~/components"
9+
import { FeatureTable, Details, DashButton } from "~/components"
1010

1111
When you use Cloudflare DNS, you can access data about DNS queries through a variety of sources.
1212

@@ -28,8 +28,7 @@ When using GraphQL, you also have the option to get data for DNS queries across
2828

2929
For a quick summary, view your DNS analytics on the dashboard:
3030

31-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login) and select your account and domain.
32-
2. Go to **DNS** > **Analytics**.
31+
<DashButton url="/?to=/:account/:zone/dns/analytics" />
3332

3433
The DNS analytics dashboard contains [four main panels](#dns-analytics-panels). The filters and time frame that you specify at the top of the page apply to all of them.
3534

src/content/docs/dns/additional-options/reverse-zones.mdx

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

8-
import { Details, Example } from "~/components"
8+
import { Details, Example, DashButton } from "~/components"
99

1010
If you control your own IP prefix(es), you can set up reverse zones with PTR records to allow reverse DNS lookups.
1111

@@ -71,7 +71,9 @@ To set up a reverse zone, you need to create a reverse DNS zone and add PTR reco
7171

7272
### 2. Add PTR records
7373

74-
1. Go to **DNS** > **Records**.
74+
1. In the Cloudflare dashboard, go to the **DNS Records** page.
75+
76+
<DashButton url="/?to=/:account/:zone/dns/records" />
7577

7678
2. For each IP within the prefix, add a PTR record using the least significant octet(s) as the subdomain.
7779

src/content/docs/dns/cname-flattening/set-up-cname-flattening.mdx

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ head:
88
content: Set up CNAME flattening
99
---
1010

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

1313
:::note
1414

@@ -26,9 +26,11 @@ For zones on paid plans, you can choose to flatten all CNAME records. This optio
2626

2727
<Tabs syncKey="dashPlusAPI"> <TabItem label="Dashboard">
2828

29-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login) and select your account and domain.
30-
2. Go to **DNS** > **Settings**.
31-
3. Turn on the option **CNAME flattening for all CNAME records**.
29+
1. In the Cloudflare dashboard, go to the **DNS Settings** page.
30+
31+
<DashButton url="/?to=/:account/:zone/dns/settings" />
32+
33+
2. Turn on the option **CNAME flattening for all CNAME records**.
3234

3335
</TabItem> <TabItem label="API">
3436

@@ -49,11 +51,10 @@ If you use this option, a special [tag](/dns/manage-dns-records/reference/record
4951

5052
<Tabs syncKey="dashPlusAPI"> <TabItem label="Dashboard">
5153

52-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login) and select your account and domain.
53-
2. In **DNS** > **Settings**, make sure that **CNAME flattening for all CNAME records** is turned off.
54-
3. Go to **DNS** > **Records** and find the CNAME record you would like to flatten.
55-
4. Select **Edit** and turn on the **Flatten** option.
56-
5. Select **Save** to confirm.
54+
1. On the [**DNS Settings**](https://dash.cloudflare.com/?to=/:account/:zone/dns/settings) page, make sure that **CNAME flattening for all CNAME records** is turned off.
55+
2. Go to the [**DNS Records**](https://dash.cloudflare.com/?to=/:account/:zone/dns/records) page and find the CNAME record you would like to flatten.
56+
3. Select **Edit** and turn on the **Flatten** option.
57+
4. Select **Save** to confirm.
5758

5859
:::note[Unavailable flatten option]
5960
For the following cases, **Flatten** will not be available:

src/content/docs/dns/dnssec/dnssec-active-migration.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The provider you are migrating from must allow you to add DNSKEY records on the
3636

3737
To import the zone file using the API, refer to the [Import DNS Records endpoint](/api/resources/dns/subresources/records/methods/import/).
3838

39-
3. Go to **DNS** > **Settings**, and select **Enable DNSSEC**. Or use the following [API request](/api/resources/dns/subresources/dnssec/methods/edit/).
39+
3. On the [**DNS Settings**](https://dash.cloudflare.com/?to=/:account/:zone/dns/settings) page, select **Enable DNSSEC**. Or use the following [API request](/api/resources/dns/subresources/dnssec/methods/edit/).
4040

4141
<APIRequest
4242
path="/zones/{zone_id}/dnssec"
@@ -46,7 +46,7 @@ The provider you are migrating from must allow you to add DNSKEY records on the
4646
}}
4747
/>
4848

49-
4. Go to **DNS** > **Settings**, and enable **Multi-signer DNSSEC**. Or use the following [API request](/api/resources/dns/subresources/dnssec/methods/edit/).
49+
4. On the [**DNS Settings**](https://dash.cloudflare.com/?to=/:account/:zone/dns/settings) page, enable **Multi-signer DNSSEC**. Or use the following [API request](/api/resources/dns/subresources/dnssec/methods/edit/).
5050

5151
<APIRequest
5252
path="/zones/{zone_id}/dnssec"

src/content/docs/dns/dnssec/multi-signer-dnssec/setup.mdx

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar:
66
label: Setup
77
---
88

9-
import { Tabs, TabItem, APIRequest } from "~/components";
9+
import { Tabs, TabItem, APIRequest, DashButton } from "~/components";
1010

1111
This page explains how you can enable [multi-signer DNSSEC](/dns/dnssec/multi-signer-dnssec/about/) with Cloudflare, using the [model 2](/dns/dnssec/multi-signer-dnssec/about/#model-2) as described in [RFC 8901](https://www.rfc-editor.org/rfc/rfc8901.html).
1212

@@ -16,7 +16,7 @@ Note that:
1616

1717
- This process requires that your other DNS provider(s) also support multi-signer DNSSEC.
1818
- Although you can complete a few steps via the dashboard, currently the whole process can only be completed using the API.
19-
- Enabling **DNSSEC** and **Multi-signer DNSSEC** in [**DNS** > **Settings**](https://dash.cloudflare.com/?to=/:account/:zone/dns/settings) only replaces the first step in [1. Set up Cloudflare zone](#1-set-up-cloudflare-zone). You still have to follow the rest of this tutorial to complete the setup.
19+
- Enabling **DNSSEC** and **Multi-signer DNSSEC** on the [**DNS Settings**](https://dash.cloudflare.com/?to=/:account/:zone/dns/settings) page only replaces the first step in [1. Set up Cloudflare zone](#1-set-up-cloudflare-zone). You still have to follow the rest of this tutorial to complete the setup.
2020

2121
## 1. Set up Cloudflare zone
2222

@@ -26,16 +26,18 @@ If you use Cloudflare as a primary DNS provider, meaning that you manage your DN
2626

2727
<Tabs syncKey="dashPlusAPI">
2828
<TabItem label="Dashboard">
29-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login) and select your account and zone.
30-
2. Go to **DNS** > **Settings**.
31-
3. Select **Enable DNSSEC** and **Confirm**.
29+
1. In the Cloudflare dashboard, go to the **DNS Settings** page.
30+
31+
<DashButton url="/?to=/:account/:zone/dns/settings" />
32+
33+
2. Select **Enable DNSSEC** and **Confirm**.
3234

3335
:::note
3436
For the purpose of this tutorial, you will update your registrar with the DS record later, in [Step 3](/dns/dnssec/multi-signer-dnssec/setup/#3-set-up-registrar).
3537
:::
3638

37-
4. Also enable **Multi-signer DNSSEC** and **Multi-provider DNS**.
38-
5. Go to **DNS** > **Records** and create the following records at your zone apex (meaning you should use `@` in the record **Name** field):
39+
3. Also enable **Multi-signer DNSSEC** and **Multi-provider DNS**.
40+
4. Go to the [**DNS Records**](https://dash.cloudflare.com/?to=/:account/:zone/dns/records) page and create the following records at your zone apex (meaning you should use `@` in the record **Name** field):
3941
- A [DNSKEY record](/dns/manage-dns-records/reference/dns-record-types/#ds-and-dnskey) with the zone signing key(s) (ZSKs) of your external provider(s).
4042
- An [NS record](/dns/manage-dns-records/reference/dns-record-types/#ns) with your external provider nameservers.
4143

@@ -108,17 +110,19 @@ If you use Cloudflare as a secondary DNS provider, do the following:
108110
<Tabs syncKey="dashPlusAPI">
109111
<TabItem label="Dashboard">
110112

111-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login) and select your account and zone.
112-
2. Go to **DNS** > **Settings**.
113-
3. For **DNSSEC with Secondary DNS** select **Live signing**.
113+
1. In the Cloudflare dashboard, go to the **DNS Settings** page.
114+
115+
<DashButton url="/?to=/:account/:zone/dns/settings" />
116+
117+
2. For **DNSSEC with Secondary DNS** select **Live signing**.
114118

115119
:::note
116120
For the purpose of this tutorial, you will update your registrar with the DS record later, in [Step 3](/dns/dnssec/multi-signer-dnssec/setup/#3-set-up-registrar).
117121
:::
118122

119-
4. Also enable **Multi-signer DNSSEC**.
120-
5. Add the zone signing key(s) (ZSKs) of your external provider(s) to a DNSKEY record at your primary DNS provider. This record should be transferred successfully to Cloudflare.
121-
6. Add your external provider(s) nameservers as NS records on your zone apex at your primary DNS provider. These records should be transferred successfully to Cloudflare.
123+
3. Also enable **Multi-signer DNSSEC**.
124+
4. Add the zone signing key(s) (ZSKs) of your external provider(s) to a DNSKEY record at your primary DNS provider. This record should be transferred successfully to Cloudflare.
125+
5. Add your external provider(s) nameservers as NS records on your zone apex at your primary DNS provider. These records should be transferred successfully to Cloudflare.
122126

123127
</TabItem>
124128
<TabItem label="API">

src/content/docs/dns/foundation-dns/setup.mdx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {
1313
Render,
1414
Details,
1515
Example,
16+
DashButton,
1617
} from "~/components";
1718

1819
Advanced nameservers included with [Foundation DNS](/dns/foundation-dns/) are an opt-in configuration.
@@ -78,10 +79,12 @@ To enable advanced nameservers on an existing zone:
7879
1. Opt for advanced nameservers on your zone:
7980

8081
<Tabs syncKey="dashPlusAPI"> <TabItem label="Dashboard">
81-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login) and select your account and domain.
82-
2. Go to **DNS** > **Records**.
83-
3. In the **Cloudflare nameservers** card, enable **Advanced nameservers**.
84-
4. After you refresh the page, the card will display the values for your advanced nameservers `NS` records.
82+
1. In the Cloudflare dashboard, go to the **DNS Records** page.
83+
84+
<DashButton url="/?to=/:account/:zone/dns/records" />
85+
86+
2. In the **Cloudflare nameservers** card, enable **Advanced nameservers**.
87+
3. After you refresh the page, the card will display the values for your advanced nameservers `NS` records.
8588

8689
</TabItem> <TabItem label="API">
8790

src/content/docs/dns/nameservers/custom-nameservers/account-custom-nameservers.mdx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,13 @@ Cloudflare will assign an IPv4 and an IPv6 address to each ACNS name, and these
107107
<Tabs syncKey="dashPlusAPI">
108108
<TabItem label="Dashboard">
109109

110-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select your account and zone.
111-
2. Go to **DNS** > **Records**.
112-
3. For **Custom nameservers**, select **Configure**.
113-
4. Select **Use your account custom nameservers** and choose a nameserver set from the list.
114-
5. Select **Save** to confirm.
110+
1. In the Cloudflare dashboard, go to the **DNS Records** page.
111+
112+
<DashButton url="/?to=/:account/:zone/dns/records" />
113+
114+
2. For **Custom nameservers**, select **Configure**.
115+
3. Select **Use your account custom nameservers** and choose a nameserver set from the list.
116+
4. Select **Save** to confirm.
115117

116118
</TabItem>
117119
<TabItem label="API">

src/content/docs/dns/nameservers/custom-nameservers/zone-custom-nameservers.mdx

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: With zone-level custom nameservers, each custom nameserver name
1212
These custom nameservers can only be used within the respective zone.
1313
---
1414

15-
import { TabItem, Tabs } from "~/components";
15+
import { TabItem, Tabs, DashButton } from "~/components";
1616

1717
With zone custom nameservers (ZCNS), each custom nameserver name must be a subdomain of the zone where the custom nameservers are configured.
1818

@@ -30,11 +30,13 @@ To create zone custom nameservers:
3030

3131
<Tabs syncKey="dashPlusAPI"> <TabItem label="Dashboard">
3232

33-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select your account and zone.
34-
2. Go to **DNS** > **Records**.
35-
3. On **Custom nameservers**, select **Configure**.
36-
4. Select **Create custom nameservers just for `your-domain.com`** and enter the subdomains used for the ZCNS names (for example, `ns1`, `ns2`, `ns3`).
37-
5. Select **Save** to confirm.
33+
1. In the Cloudflare dashboard, go to the **DNS Records** page.
34+
35+
<DashButton url="/?to=/:account/:zone/dns/records" />
36+
37+
2. On **Custom nameservers**, select **Configure**.
38+
3. Select **Create custom nameservers just for `your-domain.com`** and enter the subdomains used for the ZCNS names (for example, `ns1`, `ns2`, `ns3`).
39+
4. Select **Save** to confirm.
3840

3941
</TabItem> <TabItem label="API">
4042

@@ -66,9 +68,11 @@ To remove zone custom nameservers (and their associated, read-only DNS records):
6668

6769
<Tabs syncKey="dashPlusAPI"> <TabItem label="Dashboard">
6870

69-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select your account and zone.
70-
2. Go to **DNS** > **Records**.
71-
3. On **Custom nameservers**, select **Disable**.
71+
1. In the Cloudflare dashboard, go to the **DNS Records** page.
72+
73+
<DashButton url="/?to=/:account/:zone/dns/records" />
74+
75+
2. On **Custom nameservers**, select **Disable**.
7276

7377
</TabItem> <TabItem label="API">
7478

0 commit comments

Comments
 (0)