From 10cf8237d1eebd8f4f0ee2d07d3c3ae68b46c33b Mon Sep 17 00:00:00 2001 From: ICubE01 Date: Wed, 17 Jun 2026 20:24:51 +0900 Subject: [PATCH] Extend refresh token and shorten WebSocket token expiration --- src/main/resources/application.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index 6840899..b4c3696 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -19,9 +19,9 @@ spring: show-sql: true jwt: secret: ${JWT_SECRET} - accessTokenExpiration: 600 # 10 mins - refreshTokenExpiration: 7200 # 2 hrs - webSocketTokenExpiration: 60 # 1 min + accessTokenExpiration: 600 # 10 mins + refreshTokenExpiration: 604800 # 7 days + webSocketTokenExpiration: 5 # 5 secs botAccessTokenExpiration: 7200 # 2 hrs cors: allowed-origin: ${WEB_ORIGIN}