Skip to content

Commit e366fc3

Browse files
committed
Fix: application-dev.yml 수정
- jwt.secret 기본 값 제거
1 parent 588e3a9 commit e366fc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/application-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ logging:
8989
org.springframework.messaging: DEBUG
9090

9191
jwt:
92-
secret: ${JWT_SECRET:test-jwt-secret-key-12345678901234567890} # 운영 시에는 반드시 환경 변수로 설정할 것
92+
secret: ${JWT_SECRET} # 운영 시에는 반드시 환경 변수로 설정할 것
9393
access-token-expiration: ${JWT_ACCESS_TOKEN_EXPIRATION:1800} # 30분 (초 단위)
9494
refresh-token-expiration: ${JWT_REFRESH_TOKEN_EXPIRATION:604800} # 7일 (초 단위)
9595

0 commit comments

Comments
 (0)