You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Implement Security in your Manifest backend and make sure that your app is protected.
5
+
---
6
+
7
+
# Security
8
+
9
+
Implement security measures in your Manifest backend.
10
+
11
+
## Rate limiting
12
+
13
+
Rate-limiting can protect your backend from **brute-force attacks** by blocking requests after reaching a limit.
14
+
15
+
You can implement one or several throttler definitions to limit API calls in the `manifest.yml` file. The following example allow no more than 2 calls per second, and 50 calls per minute:
16
+
17
+
```yaml title="manifest.yml"
18
+
name: my app
19
+
20
+
settings:
21
+
rateLimits:
22
+
- { name: 'short', limit: 2, ttl: 1000 } # 2 requests per second
0 commit comments