I am trying to implement rate limiting at the CDN level in AEMaaCS.
I am testing this in an RDE using rules referenced in the Adobe documentation. However:
https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/security/traffic...
kind: "CDN"
version: "1"
data:
trafficFilters:
rules:
- name: limit-requests-client-ip
when:
reqProperty: tier
matches: "author|publish"
rateLimit:
limit: 60
window: 10
penalty: 300
count: all
groupBy:
- reqProperty: clientIp
action: block
Any suggestions for fine-tuning the rate-limit configuration, and is there a recommended way to test it?
Thankyou very much !!