From 4f629ed4289fdede8e9ce2e81a45dc12965b4ada Mon Sep 17 00:00:00 2001 From: lim Date: Thu, 7 Mar 2024 23:28:20 +0900 Subject: [PATCH] [backend] Extended expiration of access token --- backend/src/auth/auth.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/auth/auth.module.ts b/backend/src/auth/auth.module.ts index 71bb799e..efeaf969 100644 --- a/backend/src/auth/auth.module.ts +++ b/backend/src/auth/auth.module.ts @@ -23,7 +23,7 @@ export const jwtConstants = { JwtModule.register({ privateKey: jwtConstants.privateKey, signOptions: { - expiresIn: '30m', + expiresIn: '3h', algorithm: 'RS256', }, verifyOptions: {