feat: add rate limiting to API endpoints to mitigate abuse and Dos#1282
Open
dataCenter430 wants to merge 1 commit intoeigent-ai:mainfrom
Open
feat: add rate limiting to API endpoints to mitigate abuse and Dos#1282dataCenter430 wants to merge 1 commit intoeigent-ai:mainfrom
dataCenter430 wants to merge 1 commit intoeigent-ai:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related Issue
Rate limiting – endpoints not rate-limited, increasing abuse and DoS risk.
Closes #1260
Description
Rate limiting is implemented for both the server and backend FastAPI apps using slowapi.
Changes
server/pyproject.tomlAdded slowapi>=0.1.9backend/pyproject.tomlAdded slowapi>=0.1.9server/app/rate_limit.pyNew rate limiting modulebackend/app/rate_limit.pyNew rate limiting moduleserver/app/middleware/__init__.pyCalls setup_rate_limiting(api)backend/app/__init__.pyCalls setup_rate_limiting(api)server/app/controller/health_controller.pyAdded @limiter.exempt on health endpointbackend/app/controller/health_controller.pyAdded @limiter.exempt on health endpointserver/.env.exampleAdded RATE_LIMIT_ENABLED, RATE_LIMIT_DEFAULTBehavior
Why it's better
To install dependencies and try it
cd server && uv sync # or: pip install slowapi
cd backend && uv sync # or: pip install slowapi
What is the purpose of this pull request?
Contribution Guidelines Acknowledgement