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
Currently, IP rate limiting is applied uniformly across all incoming requests, which may cause issues for certain trusted clients or partners. To address this, we need to implement support for whitelisting specific IP addresses to bypass the rate limit.
This feature should allow a set of whitelisted IP addresses to be defined in the environment configuration. Requests originating from these IPs should bypass the rate limit checks.
Solution
Add a new environment variable to define a list of whitelisted IP addresses.
Implement a middleware or logic to evaluate incoming requests:
• If the IP address matches an entry in the whitelist, bypass the rate limit checks.
• If not, proceed with the current rate limiting logic.
Ensure thorough testing to validate the functionality and avoid unintended bypasses.
Alternatives
No response
The text was updated successfully, but these errors were encountered:
Problem
Currently, IP rate limiting is applied uniformly across all incoming requests, which may cause issues for certain trusted clients or partners. To address this, we need to implement support for whitelisting specific IP addresses to bypass the rate limit.
This feature should allow a set of whitelisted IP addresses to be defined in the environment configuration. Requests originating from these IPs should bypass the rate limit checks.
Solution
• If the IP address matches an entry in the whitelist, bypass the rate limit checks.
• If not, proceed with the current rate limiting logic.
Alternatives
No response
The text was updated successfully, but these errors were encountered: