Skip to content

Commit 1d820ea

Browse files
chore: add APPSMITH_RATE_LIMIT to list of configurable env variables (#2966)
## Description Provide a concise summary of the changes made in this pull request - add APPSMITH_RATE_LIMIT to list of configurable env variables ## Pull request type Check the appropriate box: - [ ] Review Fixes - [ ] Documentation Overhaul - [ ] Feature/Story - Link one or more Engineering Tickets * - [ ] A-Force - [ ] Error in documentation - [x] Maintenance ## Documentation tickets Link to one or more documentation tickets: - ## Checklist From the below options, select the ones that are applicable: - [ ] Checked for Grammarly suggestions. - [ ] Adhered to the writing checklist. - [ ] Adhered to the media checklist. - [ ] Verified and updated cross-references or added redirect rules. - [ ] Tested the redirect rules on deploy preview. - [ ] Validated the modifications made to the content on the deploy preview. - [ ] Validated the CSS modifications on different screen sizes.
1 parent b94a784 commit 1d820ea

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

website/docs/getting-started/setup/environment-variables.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,22 @@ We strongly recommend setting `APPSMITH_BASE_URL` in your environment configurat
166166

167167
</dd>
168168

169+
##### `APPSMITH_RATE_LIMIT`
170+
171+
<dd>
172+
173+
Defines the maximum number of requests each client can make to the Appsmith backend per second. The default value is `100`, which helps guard the platform against abusive traffic while keeping normal usage unaffected. Set this variable to any positive integer to adjust the cap based on your infrastructure capacity, or set it to `disabled` to turn rate limiting off entirely.
174+
175+
```yaml
176+
# Increase the limit
177+
APPSMITH_RATE_LIMIT=250
178+
179+
# Disable rate limiting
180+
APPSMITH_RATE_LIMIT=disabled
181+
```
182+
183+
</dd>
184+
169185
### Email server
170186

171187
Configure your email server in Appsmith to handle application emailing needs. The following environment variables enable you to set up and manage these email-related capabilities for your Appsmith instance.

0 commit comments

Comments
 (0)