chore(docs): redirect globs in development mode (#7114)

* chore(docs): redirect globs in development mode

* Update applications.mdx
This commit is contained in:
Tim Möhlmann 2024-02-19 11:27:51 +02:00 committed by GitHub
parent 585988bd83
commit 0b77fd4c17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -123,6 +123,29 @@ When disabled only https is allowed, as ZITADEL's configuration is secure by def
width="600px"
/>
Development mode also allows glob patterns in redirect URIs with the following special terms in the patterns:
| Special Terms | Meaning |
| ------------- | ---------------------------------------------------------------------------------------------------------- |
| `*` | matches any sequence of non-path-separators |
| `/**/` | matches zero or more directories |
| `?` | matches any single non-path-separator character |
| `[class]` | matches any single non-path-separator character against a class of characters [see "character classes"][1] |
| `{alt1,...}` | matches a sequence of characters if one of the comma-separated alternatives matches |
[1]: https://github.com/bmatcuk/doublestar?tab=readme-ov-file#character-classes
Special character can be escaped with a backslash (`\`).
Double stars (`**`) should appear surrounded by a path separators such as `/**/`.
A mid-pattern double star (`**`) behaves like bash's glob star option: a pattern
such as `path/to/**.txt` would return the same results as `path/to/*.txt`. The
pattern you're looking for is `path/to/**/*.txt`.
*Source: [github.com/bmatcuk/doublestar](https://github.com/bmatcuk/doublestar?tab=readme-ov-file#patterns)*
> When IPv6 URIs are used as redirects in development mode, square brackets must be escaped as they are also Special Terms for globs. `http://\[::1\]:80`
## Review Configuration
<ReviewConfig authType="code" />