Skip to content
Merged
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,12 @@ These endpoints are blocked by default due to security risks.
> 1. Matching uses [regex](https://regex101.com)
> 2. On compile error exact match is used instead

> [!WARNING]
> Remember that some symbols have special meanings in regex, a good rule of thumb is:
>
> - If it is a special character, it probably needs to be escaped (`/`) if you are not looking to use regex
> - Otherwise test your pattern on a [regex testing site](https://regex101.com)

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

```yaml
Expand Down Expand Up @@ -454,6 +460,12 @@ Set the wanted action on encounter, available options are `block` and `allow`.
> 1. [Regex matching](https://regex101.com)
> 2. On compile error exact match is used as fallback

> [!WARNING]
> Remember that some symbols have special meanings in regex, a good rule of thumb is:
>
> - If it is a special, it probably needs to be escaped (`/`) if you are not looking to use regex
> - Otherwise test your pattern on a [regex testing site](https://regex101.com)

Supported [placeholder types](#placeholders):

| `.` Variables | `@` Body | `#` Headers |
Expand Down