Skip to content

Commit 3699a82

Browse files
Merge branch 'master'
2 parents 7f06c3b + 3049637 commit 3699a82

File tree

5 files changed

+50
-12
lines changed

5 files changed

+50
-12
lines changed

docs/guides/rate-limits.mdx

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,22 @@ Growth plan rate limits also apply to the Legacy `Scale` plan.
126126

127127
#### Enterprise plan rate limits
128128

129-
Looking for enterprise-grade rate limits? Everything's possible.
130-
[Get in touch with us to discuss your requirements](https://ory.sh/contact).
129+
The Enterprise plan has the same default rate limits as the Growth plan. If you use case requires higher limits, please
130+
[get in touch with us to discuss your requirements](https://ory.sh/contact).
131+
132+
| Environment | Path / Bucket | Burst (rps) | Sustained (rpm) |
133+
| :-------------------- | :------------------------- | ----------: | --------------: |
134+
| Production | `/sessions/whoami` | 1200 | 36000 |
135+
| | `/admin/oauth2/introspect` | 1200 | 36000 |
136+
| | `/relation-tuples/check` | 1200 | 36000 |
137+
| | `GET /admin/identities` | 60 | 1200 |
138+
| | `POST /admin/recovery/*` | 20 | 600 |
139+
| | `*` | 800 | 18000 |
140+
| Staging & Development | `/sessions/whoami` | 10 | 30 |
141+
| | `/admin/oauth2/introspect` | 10 | 300 |
142+
| | `/relation-tuples/check` | 10 | 300 |
143+
| | `GET /admin/identities` | 1 | 10 |
144+
| | `*` | 5 | 150 |
131145

132146
## Endpoint based rate limits
133147

docs/hydra/guides/graceful-token-refresh.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To enable graceful refresh token rotation with a specific grace period, for exam
2121

2222
```shell
2323
ory patch oauth2-config --project <project-id> --workspace <workspace-id> \
24-
--replace "/oauth2/grant/refresh_token/rotation_grace_period=60s"
24+
--replace '/oauth2/grant/refresh_token/rotation_grace_period="60s"'
2525
```
2626

2727
In this command:

docs/kratos/concepts/security.mdx

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,40 @@ Ory OAuth2 and OpenID Connect is a certified OAuth2 and OpenID Connect provider.
7373

7474
## CAPTCHAs
7575

76-
:::info
77-
78-
Captcha protection is being tested and is not yet available for general use. If you are interested, please
79-
[contact us](https://ory.sh/contact).
76+
Ory Identities supports protecting the registration and login endpoints with CAPTCHA challenges. This is useful to prevent
77+
credential stuffing, brute force and other automated attacks.
8078

81-
:::
79+
#### Prerequisites
8280

83-
Ory Identities supports protecting the registration and login endpoints with captcha challenges. This is useful to prevent
84-
credential stuffing, brute force and other automated attacks.
81+
Before proceeding, ensure you are on a plan that supports this feature. If you need CAPTCHA support, please
82+
[contact us](https://www.ory.sh/contact/).
8583

86-
Supported captcha providers are:
84+
Supported CAPTCHA providers are:
8785

8886
- [Cloudflare Turnstile](https://developers.cloudflare.com/turnstile)
87+
88+
```mdx-code-block
89+
<Tabs groupId="console-or-api">
90+
<TabItem value="console" label="Ory Console">
91+
```
92+
93+
1. Go to <ConsoleLink route="project.authentication" />.
94+
2. Toggle **CAPTCHA protection**.
95+
3. Click **Save**.
96+
97+
4. Navigate to your registration or login screen to test the CAPTCHA protection.
98+
99+
```mdx-code-block
100+
</TabItem>
101+
<TabItem value="cli" label="Ory CLI">
102+
```
103+
104+
```shell
105+
ory patch identity-config --project <project-id> --workspace <workspace-id> \
106+
--replace '/selfservice/mehods/captcha/enabled=true'
107+
```
108+
109+
```mdx-code-block
110+
</TabItem>
111+
</Tabs>
112+
```

docs/self-hosted/oel/eol-image-tags.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@
4242
| 29c1dd6b0b5d0b991019e2730f4efd4fce86fa48 | 2025-02-04 |
4343
| e17b2ea61cc69e70f252e384d5ccbac83e504ced | 2025-02-12 |
4444
| 569c06b47e9ccd9548afa71d22e7ba4e3b1d5b01 | 2025-02-14 |
45+
| 19f3f0fbbfb9cb48788789c47352ce8f582ea64c | 2025-02-21 |

src/sidebar.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ const referenceSidebar: ExtendSidebar = [
9292
"guides/rate-limits",
9393
"guides/ip-allowlist",
9494
"api/eventual-consistency",
95-
"guides/custom-domains",
9695
"console/usage-billing",
9796
],
9897
},

0 commit comments

Comments
 (0)