fix(kong): raise rate limit 100→2000 req/min to avoid 429 on admin panel
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
856354690d
commit
827b6d03c8
|
|
@ -281,10 +281,10 @@ plugins:
|
||||||
credentials: true
|
credentials: true
|
||||||
max_age: 3600
|
max_age: 3600
|
||||||
|
|
||||||
# Global rate limiting (default: 100 req/min)
|
# Global rate limiting (default: 2000 req/min)
|
||||||
- name: rate-limiting
|
- name: rate-limiting
|
||||||
config:
|
config:
|
||||||
minute: 100
|
minute: 2000
|
||||||
policy: local
|
policy: local
|
||||||
fault_tolerant: true
|
fault_tolerant: true
|
||||||
hide_client_headers: false
|
hide_client_headers: false
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue