diff --git a/packages/server/src/common/config/throttle.ts b/packages/server/src/common/config/throttle.ts index 5da517b73..70ac6e044 100644 --- a/packages/server/src/common/config/throttle.ts +++ b/packages/server/src/common/config/throttle.ts @@ -2,10 +2,12 @@ import { registerAs } from '@nestjs/config'; export default registerAs('throttle', () => ({ global: { - ttl: parseInt(process.env.THROTTLE_GLOBAL_TTL ?? '60', 10), + // TTL in milliseconds (NestJS throttler v6+) + ttl: parseInt(process.env.THROTTLE_GLOBAL_TTL ?? '60000', 10), limit: parseInt(process.env.THROTTLE_GLOBAL_LIMIT ?? '100', 10), }, auth: { + // TTL in milliseconds (NestJS throttler v6+) ttl: parseInt(process.env.THROTTLE_AUTH_TTL ?? '60000', 10), limit: parseInt(process.env.THROTTLE_AUTH_LIMIT ?? '10', 10), },