You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Corrected a typo in the `verifyFCrDNS` function documentation.
Additionally, updated the spelling exception list to include new terms and remove redundant entries.
Copy file name to clipboardExpand all lines: docs/docs/admin/configuration/expressions.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -356,7 +356,7 @@ function verifyFCrDNS(ip: string, pattern: string): bool;
356
356
`verifyFCrDNS` checks if the reverse DNS of an IP address matches its forward DNS. This is a common technique to filter out spam and bot traffic. `verifyFCrDNS` comes in two forms:
357
357
358
358
- `verifyFCrDNS(remoteAddress)`will check that the reverse DNS of the remote address resolves back to the remote address. If no PTR records, returns true.
359
-
- `verifyFCrDNS(remoteAddress, pattren)`will check that the reverse DNS of the remote address is matching with pattern and that name resolves back to the remote address.
359
+
- `verifyFCrDNS(remoteAddress, pattern)`will check that the reverse DNS of the remote address is matching with pattern and that name resolves back to the remote address.
0 commit comments