From da53b89579785fb383abbcc620d7cbd78a5cb7be Mon Sep 17 00:00:00 2001 From: Kartik Shah Date: Wed, 20 Sep 2023 17:34:31 +0530 Subject: [PATCH] chore: bump request phone code ip rate limits (#3247) --- galoy.yaml | 2 +- src/config/schema.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/galoy.yaml b/galoy.yaml index cb1d2160ec..af4386b07c 100644 --- a/galoy.yaml +++ b/galoy.yaml @@ -54,7 +54,7 @@ rateLimits: duration: 3600 blockDuration: 10800 requestCodePerIp: - points: 8 + points: 16 duration: 3600 blockDuration: 86400 failedLoginAttemptPerLoginIdentifier: diff --git a/src/config/schema.ts b/src/config/schema.ts index 7fbc9985d6..436818f6be 100644 --- a/src/config/schema.ts +++ b/src/config/schema.ts @@ -285,7 +285,7 @@ export const configSchema = { blockDuration: 10800, }, requestCodePerIp: { - points: 8, + points: 16, duration: 3600, blockDuration: 86400, },