File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
src/components/ConsoleLink Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -85,20 +85,20 @@ Supported CAPTCHA providers are:
85
85
86
86
- [ Cloudflare Turnstile] ( https://developers.cloudflare.com/turnstile )
87
87
88
- Cloudflare Turnstile widgets support a maximum of 10 allowed domains. When CAPTCHA is enabled, this list will be automatically
89
- populated with your currently configured [ custom domains] ( ../../guides/custom-domains.mdx ) . If your domain list exceeds this
90
- limit, you won't be able to enable CAPTCHA protection.
91
-
92
88
``` mdx-code-block
93
89
<Tabs groupId="console-or-api">
94
90
<TabItem value="console" label="Ory Console">
95
91
```
96
92
97
93
1 . Go to <ConsoleLink route = " project.authentication" />.
98
94
2 . Toggle ** CAPTCHA protection** .
99
- 3 . Click ** Save** .
95
+ 3 . (optional) Add or remove domains from the ** Allowed domains** list.
96
+
97
+ - You must define at least one valid domain.
98
+ - You can list up to 10 domains in total.
100
99
101
- 4 . Navigate to your registration or login screen to test the CAPTCHA protection.
100
+ 4 . Click ** Save** .
101
+ 5 . Navigate to your registration or login screen to test the CAPTCHA protection.
102
102
103
103
``` mdx-code-block
104
104
</TabItem>
@@ -107,7 +107,8 @@ limit, you won't be able to enable CAPTCHA protection.
107
107
108
108
``` shell
109
109
ory patch identity-config --project < project-id> --workspace < workspace-id> \
110
- --replace ' /selfservice/mehods/captcha/enabled=true'
110
+ --replace ' /selfservice/mehods/captcha/enabled=true' \
111
+ --replace ' /selfservice/methods/captcha/config/allowed_domains=["example.org", "foo.bar.dev"]'
111
112
```
112
113
113
114
``` mdx-code-block
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export const brandingPaths: Path[] = [
69
69
70
70
export const authenticationPaths : Path [ ] = [
71
71
{
72
- title : "Registration " ,
72
+ title : "General " ,
73
73
href : routes . project . authentication . route ,
74
74
} ,
75
75
{
You can’t perform that action at this time.
0 commit comments