Skip to content

Commit

Permalink
Slowly loosen rate limiting
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostka committed Feb 17, 2025
1 parent 0ceb7cc commit 3ca60eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k8s/helmfile/env/production/ingress-nginx.values.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ controller:
cpu: null
config:
http-snippet: >-
limit_req_zone $host zone=limit_host:10m rate=10r/s;
limit_req zone=limit_host burst=20 delay=10;
limit_req_zone $host zone=limit_host:10m rate=15r/s;
limit_req zone=limit_host burst=40 delay=10;
limit_req_zone $binary_remote_addr$host zone=limit_ip_host:10m rate=5r/s;
limit_req zone=limit_ip_host burst=12 delay=8;
limit_req zone=limit_ip_host burst=30 delay=10;
limit-req-status-code: 429
limit-conn-status-code: 429
custom-http-errors: "502,503"
Expand Down

0 comments on commit 3ca60eb

Please sign in to comment.