mirror of
https://github.com/lukaszraczylo/graphql-monitoring-proxy.git
synced 2026-06-05 23:03:48 +00:00
ac44056a00
* Add ratelimit configuration. * Add rate limiting :party:
16 lines
252 B
JSON
16 lines
252 B
JSON
{
|
|
"ratelimit": {
|
|
"admin": {
|
|
"req": 100,
|
|
"interval": "second"
|
|
},
|
|
"guest": {
|
|
"req": 3,
|
|
"interval": "second"
|
|
},
|
|
"-": {
|
|
"req": 100,
|
|
"interval": "hour"
|
|
}
|
|
}
|
|
} |