Skip to content

Commit a29c7b5

Browse files
committed
Disable rate limiting by default.
Signed-off-by: Jason Lewis <[email protected]>
1 parent 5170ac8 commit a29c7b5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/config/config.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,17 +77,19 @@
7777
| The "limit" is the number of requests the consumer can make within a
7878
| certain amount time which is defined by "reset" in minutes.
7979
|
80+
| By default rate limiting is disabled.
81+
|
8082
*/
8183

8284
'rate_limiting' => [
8385

8486
'authenticated' => [
85-
'limit' => 6000,
87+
'limit' => 0,
8688
'reset' => 60
8789
],
8890

8991
'unauthenticated' => [
90-
'limit' => 60,
92+
'limit' => 0,
9193
'reset' => 60
9294
],
9395

0 commit comments

Comments
 (0)