diff options
author | niamhcore <niamh.core@est.tech> | 2021-04-07 11:35:19 +0100 |
---|---|---|
committer | Niamh Core <niamh.core@est.tech> | 2021-04-07 13:59:24 +0000 |
commit | 18331f509abc207cdfd83e641584f2c205516d51 (patch) | |
tree | d2dc9e3bcb5885263619266bd40c446ba76554fc /docker-compose | |
parent | d5bbadf5b3eb2bea6ba7c72eb13d58a76c144c87 (diff) |
Fix upload size to be greater than 1MB
Issue-ID: CPS-308
Signed-off-by: niamhcore <niamh.core@est.tech>
Change-Id: I1de6efa882f85cf6f9054e3ef38ed6e0bd99d7be
Diffstat (limited to 'docker-compose')
-rw-r--r-- | docker-compose/application.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docker-compose/application.yml b/docker-compose/application.yml index be4b688cf3..f3c009189d 100644 --- a/docker-compose/application.yml +++ b/docker-compose/application.yml @@ -34,6 +34,12 @@ spring: change-log: classpath:changelog/changelog-master.yaml
labels: ${LIQUIBASE_LABELS}
+ servlet:
+ multipart:
+ enabled: true
+ max-file-size: 100MB
+ max-request-size: 100MB
+
security:
# comma-separated uri patterns which do not require authorization
permit-uri: /manage/health/**,/manage/info,/swagger-ui/**,/swagger-resources/**,/v3/api-docs
|