Skip to content

Commit

Permalink
yml μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
friendshipkim97 committed Aug 14, 2024
1 parent 76c8d80 commit 0502f53
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ spring:
hikari:
maximum-pool-size: 40 # μ΅œλŒ€ ν’€ 크기
minimum-idle: 20 # μ΅œμ†Œ 유휴 컀λ„₯μ…˜ 수
idle-timeout: 30000 # 유휴 컀λ„₯μ…˜ νƒ€μž„μ•„μ›ƒ (λ°€λ¦¬μ΄ˆ)
idle-timeout: 30000 # 유휴 컀λ„₯μ…˜ νƒ€μž„μ•„μ›ƒ (λ°€λ¦¬μ΄ˆ)
connection-timeout: 30000 # 컀λ„₯μ…˜ νƒ€μž„μ•„μ›ƒ (λ°€λ¦¬μ΄ˆ)
max-lifetime: 1800000 # 컀λ„₯μ…˜ μ΅œλŒ€ 수λͺ… (λ°€λ¦¬μ΄ˆ)
max-lifetime: 1800000 # 컀λ„₯μ…˜ μ΅œλŒ€ 수λͺ… (λ°€λ¦¬μ΄ˆ)

jpa:
database: mysql
Expand All @@ -22,6 +22,7 @@ spring:
show_sql: false
format_sql: true
use_sql_comments: true

mail:
host: smtp.gmail.com
port: 587
Expand All @@ -35,6 +36,9 @@ spring:
required: true
auth: true

server:
port: ${SERVER_PORT:8080} # ν™˜κ²½ λ³€μˆ˜λ‘œ 포트 μ„€μ •, κΈ°λ³Έκ°’ 8080

management:
endpoints:
web:
Expand All @@ -49,8 +53,6 @@ logging:
root: INFO
org.springframework: DEBUG

server:
forward-headers-strategy: framework

#spring:
# application:
Expand Down Expand Up @@ -88,6 +90,8 @@ server:
# enable: true
# required: true
# auth: true
# server:
# port: ${SERVER_PORT:8080} # ν™˜κ²½ λ³€μˆ˜λ‘œ 포트 μ„€μ •, κΈ°λ³Έκ°’ 8080
#
#management:
# endpoints:
Expand Down

0 comments on commit 0502f53

Please sign in to comment.