Skip to content

Commit 7f6ef9b

Browse files
committed
chore: redis 연결 정보, JWT 설정 정보 추가
1 parent 37db71e commit 7f6ef9b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/main/resources/application-credentials.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,11 @@ spring:
1111
properties:
1212
hibernate:
1313
dialect: org.hibernate.dialect.OracleDialect
14+
data:
15+
redis:
16+
host: ${REDIS_HOST}
17+
port: ${REDIS_PORT}
18+
jwt:
19+
secret: ${JWT_SECRET}
20+
access-token-expiration: ${JWT_ACCESS_TOKEN_EXPIRATION}
21+
refresh-token-expiration: ${JWT_REFRESH_TOKEN_EXPIRATION}

0 commit comments

Comments
 (0)