Skip to content

Commit

Permalink
chore: AT 유효기간을 3일로 변경한다.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarltj committed Aug 31, 2024
1 parent 0a8dd25 commit 9b0f7fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ spring:

data:
redis:
host: ${REDIS_HOST}
port: ${REDIS_PORT}
host: localhost
port: 6379

# db 설정
datasource:
db:
pool-name: moneymong
jdbc-url: jdbc:mysql://moneymong-db:3306/moneymong?useSSL=false&&allowPublicKeyRetrieval=true
jdbc-url: jdbc:mysql://49.50.162.109:3306/moneymong?useSSL=false&&allowPublicKeyRetrieval=true
username: root
password: ${DB_ROOT_PASSWORD}
password: ajslajslahdahd1!
driver-class-name: com.mysql.cj.jdbc.Driver
maximum-pool-size: 5
connection-timeout: 3000
Expand Down Expand Up @@ -62,5 +62,5 @@ jwt:
issuer: MONEYMONG
secret-key: ${JWT_SECRET_KEY}
expiry-seconds:
access-token: 1800
access-token: 259200
refresh-token: 1209600
2 changes: 1 addition & 1 deletion src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ jwt:
issuer: MONEYMONG
secret-key: ${JWT_SECRET_KEY}
expiry-seconds:
access-token: 1800
access-token: 259200
refresh-token: 1209600

0 comments on commit 9b0f7fa

Please sign in to comment.