Skip to content

Commit 5e77ecc

Browse files
committed
Convert to US spelling
1 parent 13147be commit 5e77ecc

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

src/content/docs/learning-paths/secure-internet-traffic/build-dns-policies/recommended-dns-policies.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ curl --request POST \
204204
"traffic": "any(dns.dst.geo.country[*] in {\"AF\" \"BY\" \"CD\" \"CU\" \"IR\" \"IQ\" \"KP\" \"MM\" \"RU\" \"SD\" \"SY\" \"UA\" \"ZW\"})",
205205
"rule_settings": {
206206
"block_page_enabled": true,
207-
"block_reason": "This domain was blocked due to being classified as a security risk to the organisation"
207+
"block_reason": "This domain was blocked due to being classified as a security risk to the organization"
208208
}
209209
}'
210210
```
@@ -225,7 +225,7 @@ resource "cloudflare_zero_trust_gateway_policy" "dns_geolocation_block_policy" {
225225
traffic = "any(dns.dst.geo.country[*] in {\"AF\" \"BY\" \"CD\" \"CU\" \"IR\" \"IQ\" \"KP\" \"MM\" \"RU\" \"SD\" \"SY\" \"UA\" \"ZW\"})"
226226
rule_settings {
227227
block_page_enabled = true
228-
block_page_reason = "This domain was blocked due to being classified as a security risk to the organisation"
228+
block_page_reason = "This domain was blocked due to being classified as a security risk to the organization"
229229
}
230230
}
231231
```
@@ -267,7 +267,7 @@ curl --request POST \
267267
"traffic": "any(dns.domains[*] matches \"[.](cn|ru)$ or [.](rest|hair|top|live|cfd|boats|beauty|mom|skin|okinawa)$ or [.](zip|mobi)$\")",
268268
"rule_settings": {
269269
"block_page_enabled": true,
270-
"block_reason": "This domain was blocked due to being classified as a security risk to the organisation"
270+
"block_reason": "This domain was blocked due to being classified as a security risk to the organization"
271271
}
272272
}'
273273
```
@@ -288,7 +288,7 @@ resource "cloudflare_zero_trust_gateway_policy" "dns_blacklist_policy" {
288288
traffic = "any(dns.domains[*] matches \"[.](cn|ru)$ or [.](rest|hair|top|live|cfd|boats|beauty|mom|skin|okinawa)$ or [.](zip|mobi)$\")"
289289
rule_settings {
290290
block_page_enabled = true
291-
block_page_reason = "This domain was blocked due to being classified as a security risk to the organisation"
291+
block_page_reason = "This domain was blocked due to being classified as a security risk to the organization"
292292
}
293293
}
294294
```
@@ -331,7 +331,7 @@ curl --request POST \
331331
"traffic": "any(dns.domains[*] matches \".*okta.*|.*cloudflare.*|.*mfa.*|.sso.*\") and not(any(dns.domains[*] in $<Known Phishing Domains List UUID>))",
332332
"rule_settings": {
333333
"block_page_enabled": true,
334-
"block_reason": "This domain was blocked due to being classified as a security risk to the organisation"
334+
"block_reason": "This domain was blocked due to being classified as a security risk to the organization"
335335
}
336336
337337
}'
@@ -353,7 +353,7 @@ resource "cloudflare_zero_trust_gateway_policy" "dns_phishing_domains_block" {
353353
traffic = "any(dns.domains[*] matches \".*okta.*|.*cloudflare.*|.*mfa.*|.sso.*\") and not(any(dns.domains[*] in ${"$"}${cloudflare_zero_trust_list.known_phishing_domains_list.id}))"
354354
rule_settings {
355355
block_page_enabled = true
356-
block_page_reason = "This domain was blocked due to being classified as a security risk to the organisation"
356+
block_page_reason = "This domain was blocked due to being classified as a security risk to the organization"
357357
}
358358
}
359359
```
@@ -397,7 +397,7 @@ curl --request POST \
397397
"traffic": "any(dns.resolved_ips[*] in $<IP Blocklist UUID>)",
398398
"rule_settings": {
399399
"block_page_enabled": true,
400-
"block_reason": "This domain was blocked due to being classified as a security risk to the organisation"
400+
"block_reason": "This domain was blocked due to being classified as a security risk to the organization"
401401
}
402402
}'
403403
```
@@ -418,7 +418,7 @@ resource "cloudflare_zero_trust_gateway_policy" "dns_resolvedip_blocklist_rule"
418418
traffic = "any(dns.resolved_ips[*] in ${"$"}${cloudflare_zero_trust_list.ip_blocklist.id}"
419419
rule_settings {
420420
block_page_enabled = true
421-
block_page_reason = "This domain was blocked due to being classified as a security risk to the organisation"
421+
block_page_reason = "This domain was blocked due to being classified as a security risk to the organization"
422422
}
423423
}
424424
```

src/content/docs/pages/configuration/debugging-pages.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To fix this in GitHub:
2626
1. Log in to your GitHub account.
2727
2. Go to **Settings** from your user icon > find **Applications** under Integrations.
2828
3. Find **Cloudflare Pages** > **Configure** > scroll down and select **Uninstall**.
29-
4. Re-authorize your GitHub user/organisation on the Cloudflare dashboard.
29+
4. Re-authorize your GitHub user/organization on the Cloudflare dashboard.
3030

3131
To fix this in GitLab:
3232

@@ -70,10 +70,8 @@ Possible errors in this step could be caused by faulty setup in your Pages proje
7070

7171
:::note
7272

73-
7473
Make sure there are no emojis or special characters as part of your commit message in a Pages project that is integrated with GitHub or GitLab as it can potentially cause issues when building the project.
7574

76-
7775
:::
7876

7977
### Deploying to Cloudflare's global network

0 commit comments

Comments
 (0)