diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index bc776ca..e344b99 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -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 @@ -22,6 +22,7 @@ spring: show_sql: false format_sql: true use_sql_comments: true + mail: host: smtp.gmail.com port: 587 @@ -35,6 +36,9 @@ spring: required: true auth: true + server: + port: ${SERVER_PORT:8080} # 환경 변수로 포트 설정, 기본값 8080 + management: endpoints: web: @@ -49,8 +53,6 @@ logging: root: INFO org.springframework: DEBUG -server: - forward-headers-strategy: framework #spring: # application: @@ -88,6 +90,8 @@ server: # enable: true # required: true # auth: true +# server: +# port: ${SERVER_PORT:8080} # 환경 변수로 포트 설정, 기본값 8080 # #management: # endpoints: