Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions docs/configuration/endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,7 @@ because of security concerns the following endpoints are blocked:
> [!IMPORTANT]
>
> 1. Matching uses [regex](https://regex101.com)
> 2. On error [glob-style patterns](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html) are used instead

> [!TIP]
> Quick reminder, how [glob-style patterns](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html) work:
>
> - `*` matches any sequence of characters
> - `?` matches a single character
> - `[abc]` matches one of the characters in the brackets
> 2. On compile error exact match is used instead

You can modify endpoints by configuring `access.endpoints` in your config:

Expand Down
5 changes: 4 additions & 1 deletion docs/configuration/field-policies.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ settings:
Set the wanted action on encounter, available options are `block` and `allow`.

> [!TIP]
> String fields always try to use [regex matching](https://regex101.com), on compile error exact match is used as fallback
> String fields always try to use
>
> 1. [Regex matching](https://regex101.com)
> 2. On compile error exact match is used as fallback

> [!NOTE]
> Supported [placeholder types](../usage/advanced#placeholders):
Expand Down