배포 할때는 로드 밸런스의 dns이름을 걸어야 한다.
http 요청은 80이 디폴트 포트값이다.
포트 번호를 바꿀순 있다.
http:80

server:
servlet:
encoding:
charset: utf-8
force: true
session:
tracking-modes: cookie
port: 5000
spring:
mustache:
servlet:
expose-session-attributes: true
expose-request-attributes: true
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://${RDS_HOSTNAME}:${RDS_PORT}/${RDS_DBNAME}
username: ${RDS_USERNAME}
password: ${RDS_PASSWORD}
jpa:
hibernate:
ddl-auto: none
properties:
hibernate:
default_batch_fetch_size: 10
open-in-view: true
logging:
level:
'[shop.mtcoding.blog]': INFO
리눅스 변수는 모두 대문자로 적어야 한다, 컨벤션이다.