Skip to content

Commit a066079

Browse files
committed
Merge branch 'production' into max/zt/revamp-policies-section
2 parents dd92249 + d712955 commit a066079

File tree

33 files changed

+214
-127
lines changed

33 files changed

+214
-127
lines changed

public/__redirects

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2352,8 +2352,8 @@
23522352
/logs/get-started/enable-destinations/* /logs/logpush/logpush-job/enable-destinations/:splat 301
23532353
/logs/reference/log-fields/* /logs/logpush/logpush-job/datasets/:splat 301
23542354
/speed/optimization/other/* /speed/optimization/ 301
2355-
/cloudflare-one/connections/connect-devices/* /cloudflare-one/team-and-resources/devices 301
2356-
/cloudflare-one/connections/connect-networks/* /cloudflare-one/networks/connectors/cloudflare-tunnel/ 301
2355+
/cloudflare-one/connections/connect-devices/* /cloudflare-one/team-and-resources/devices/:splat 301
2356+
/cloudflare-one/connections/connect-networks/* /cloudflare-one/networks/connectors/cloudflare-tunnel/:splat 301
23572357

23582358
# AI Crawl Control
23592359
/ai-audit/* /ai-crawl-control/:splat 301

src/content/docs/automatic-platform-optimization/get-started/activate-cf-wp-plugin.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ The Cloudflare APO WordPress plugin does not support multisite WordPress install
3939

4040
<DashButton url="/?to=/:account/:zone/speed/optimization" />
4141

42-
3. Go to **Content Optimization**.
43-
4. For **Automatic Platform Optimization for WordPress**, select **Purchase**.
44-
5. Enter your payment information and select **Confirm payment**.
42+
2. Go to **Content Optimization**.
43+
3. For **Automatic Platform Optimization for WordPress**, select **Purchase**.
44+
4. Enter your payment information and select **Confirm payment**.
4545

4646
## Install and activate the Cloudflare WordPress plugin
4747

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
---
2-
title: Confirm DNS Records
2+
title: Confirm DNS records
33
pcx_content_type: how-to
44
sidebar:
55
order: 6
66
head:
77
- tag: title
88
content: Confirm DNS records
9-
109
---
1110

12-
Before you change your nameserver, confirm your DNS records are displaying correctly.
11+
import { DashButton } from "~/components";
12+
13+
Before you change your nameservers, confirm your DNS records are displaying correctly.
14+
15+
1. In the Cloudflare dashboard, go to the DNS **Records** page.
16+
17+
<DashButton url="/?to=/:account/:zone/dns/records" />
1318

14-
1. Open your Cloudflare dashboard and select your account.
15-
2. Select your domain from the dropdown.
16-
3. Select the **DNS** > **Records** tile. DNS management for your domain displays.
17-
4. To add a record, select **Add record.**
18-
5. To edit an existing record, select **Edit** for the appropriate record.
19-
6. After making your changes, select **Save**.
19+
2. To add a record, select **Add record**.
20+
3. To edit an existing record, select **Edit** for the appropriate record.
21+
4. After making your changes, select **Save**.
2022

2123
After you confirm your DNS records, [change your nameservers](/automatic-platform-optimization/get-started/change-nameservers/).

src/content/docs/automatic-platform-optimization/get-started/verify-apo-works.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can check whether or not APO is working by verifying APO headers are present
2121
- `cf-edge-cache` | `cache, platform=wordpress`
2222
- The `cf-edge-cache` headers confirms the WordPress plugin is installed and enabled.
2323

24-
In a terminal, use the following cURL. The header `'accept: text/html'` is important
24+
In a terminal, use the following cURL. The header `'accept: text/html'` is important.
2525

2626
```sh
2727
curl -svo /dev/null -A "CF" 'https://example.com/' -H 'accept: text/html' 2>&1 | grep 'cf-cache-status\|cf-edge\|cf-apo-via'
@@ -42,4 +42,4 @@ As always, `cf-cache-status` displays if the asset hit the cache or was consider
4242

4343
## Verify the APO integration and WordPress integration work
4444

45-
Open your WordPress site and publish a change. When the integration is working, the page is cached with `cf-cache-status: HIT` and `cf-apo-via: tcache`
45+
Open your WordPress site and publish a change. When the integration is working, the page is cached with `cf-cache-status: HIT` and `cf-apo-via: tcache`.

src/content/docs/cache/how-to/cache-rules/create-api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ head:
1212

1313
import { Details, APIRequest } from "~/components"
1414

15-
Use the [Rulesets API](https://developers.cloudflare.com/ruleset-engine/rulesets-api/) to create a cache rule via API. To configure Cloudflare’s API refer to the [API documentation](/fundamentals/api/get-started/).
15+
Use the [Rulesets API](/ruleset-engine/rulesets-api/) to create a cache rule via API. To configure Cloudflare’s API refer to the [API documentation](/fundamentals/api/get-started/).
1616

1717
## Basic rule settings
1818

src/content/docs/cloudflare-one/account-limits.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ This page lists the default account limits for rules, applications, fields, and
6666
| ---------------------------------------- | ----- |
6767
| `cloudflared` tunnels per account | 1,000 |
6868
| WARP Connectors per account | 10 |
69-
| Routes per tunnel | 1,000 |
69+
| Routes per tunnel | 1,000 |
7070
| Active `cloudflared` replicas per tunnel | 25 |
71+
| Virtual networks per account | 1,000 |
7172

7273
## Digital Experience Monitoring (DEX)
7374

src/content/docs/cloudflare-one/applications/configure-apps/self-hosted-public-app.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import { Render } from "~/components";
1010

1111
You can securely publish internal tools and applications by adding Cloudflare Access as an authentication layer between the end user and your origin server.
1212

13+
This guide covers how to make a web application accessible to anyone on the Internet via a public hostname. If you would like to make the application available over a private IP or hostname, refer to [Add a self-hosted private application](/cloudflare-one/applications/non-http/self-hosted-private-app/).
14+
1315
## Prerequisites
1416

1517
- An [active domain on Cloudflare](/fundamentals/manage-domains/add-site/)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
pcx_content_type: reference
3+
title: Cipher suites
4+
---
5+
6+
Cloudflare Tunnel connections use the cipher suites supported by `cloudflared`, which relies on the Go TLS library for its TLS implementation. When establishing a TLS connection to your origin, `cloudflared` will negotiate the most secure cipher suite supported by both sides.
7+
8+
The following table lists the cipher suites supported by cloudflared:
9+
10+
| Protocol support | Cipher suites |
11+
|------------------|----------------|
12+
| TLS 1.3 only | `TLS_AES_128_GCM_SHA256`<br />`TLS_AES_256_GCM_SHA384`<br />`TLS_CHACHA20_POLY1305_SHA256` |
13+
| TLS 1.2 only | `TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256`<br />`TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384`<br />`TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256`<br />`TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384`<br />`TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256`<br />`TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256` |
14+
| Up to and including TLS 1.2 | `TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA`<br />`TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA`<br />`TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA`<br />`TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA` |
15+
16+

src/content/docs/log-explorer/api.mdx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,10 @@ Configuration and Log searches are also available via a public API.
99

1010
## Authentication
1111

12-
Log Explorer is available to users with the following permissions:
13-
14-
- **Logs Edit**: users with Logs Edit permissions can enable datasets.
15-
- **Logs Read**: users with Logs Read permissions can run queries via the UI or API.
16-
17-
Note that these permissions exist at the account and zone level and you need the appropriate permission level for the datasets you wish to query.
18-
1912
Authentication with the API can be done via an API token or API key with an email. Refer to [Create API token](/fundamentals/api/get-started/create-token/) for further instructions.
2013

14+
For detailed information on permissions required for each Log Explorer feature, refer to the [Permissions](/log-explorer/#permissions) section.
15+
2116
## Query data
2217

2318
Log Explorer includes a SQL API for submitting queries.

src/content/docs/log-explorer/index.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,21 @@ Log Explorer provides access to Cloudflare logs with all the context available w
2222

2323
Contract customers can choose to store their logs in Log Explorer for up to two years, at an additional cost of $0.10 per GB per month. Customers interested in this feature can contact their account team to have it added to their contract.
2424

25+
## Permissions
26+
27+
Access to Log Explorer features is controlled through specific permissions. Each permission grants users the ability to perform certain actions, such as querying logs, managing datasets, or creating dashboards.
28+
29+
| Feature | Required Permission | Description |
30+
|----------|--------------------|--------------|
31+
| **Manage datasets** | `Logs Edit` | Add, enable, or disable datasets. |
32+
| **Log Search** | `Logs Read` | Query logs in the dashboard or via API. |
33+
| **Log Search (save query)** | `Logs Write` | Save log search queries. |
34+
| **Custom dashboards** | `Analytics Read` | Create and view custom dashboards. |
35+
36+
These permissions apply across both the dashboard and the API, and must be granted at either the account or zone level depending on which datasets you need to access.
37+
38+
Authentication with the API can be done via an API token or API key with an email. Refer to [Create API token](/fundamentals/api/get-started/create-token/) for further instructions.
39+
2540
## Features
2641

2742
<Feature header="Log Search" href="/log-explorer/log-search/">

0 commit comments

Comments
 (0)