hundreds-match-36539
10/27/2023, 11:15 AMchilly-king-10285
10/27/2023, 11:15 AMchilly-king-10285
10/27/2023, 11:16 AMyaml - id: "ory:kratos:public" match: url: "<http://127.0.0.1:4455/.ory/kratos/public/<**>>"
In this example, <**>
acts as a wildcard, matching any path under <http://127.0.0.1:4455/.ory/kratos/public/>
. However, this is used for defining access rules, not for the Allowed Redirect URLs list. For the Allowed Redirect URLs, you need to specify the exact URLs that are allowed: yaml selfservice: allowed_return_urls: - <https://www.myapp.com/>
In this example, <https://www.myapp.com/>
is explicitly allowed as a return URL. There is no mention of wildcard support in this context. For more detailed information, you may want to refer to the [Ory documentation](https://www.ory.sh/docs/concepts/redirects).