diff --git a/src/main/resources/application-dev.yml b/src/main/resources/application-dev.yml index aec88a8..a7ab0ba 100644 --- a/src/main/resources/application-dev.yml +++ b/src/main/resources/application-dev.yml @@ -21,12 +21,6 @@ spring: physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl show-sql: true - servlet: - multipart: - max-file-size: 10MB - max-request-size: 10MB - location: /path/to/custom/tmp - jwt: # HS512 알고리즘을 사용할 것이기 때문에 512bit, 즉 64byte 이상의 secret key를 사용 secret: ${SECURITY_KEY} diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 03f4a50..14ce28c 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -9,5 +9,6 @@ spring: multipart: max-file-size: 20MB max-request-size: 20MB + location: /path/to/custom/tmp