Skip to content

Commit

Permalink
increase default rate limit to 120 req/min
Browse files Browse the repository at this point in the history
  • Loading branch information
mfornos committed Nov 22, 2024
1 parent 122057e commit ad4b526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const $BaseServerOptions = z.object({
address: z.string().min(1),
grace: z.number().min(1),
telemetry: z.boolean().default(true),
rateLimitMax: z.number().default(60),
rateLimitMax: z.number().default(120),
rateLimitWindow: z.number().default(60_000),
})

Expand Down

0 comments on commit ad4b526

Please sign in to comment.