Compare commits

..

2 Commits

Author SHA1 Message Date
5490bc446c Merge remote-tracking branch 'origin/master'
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m14s
Publish Docker Image / docker (ubuntu-latest) (push) Successful in 37s
2024-04-23 19:15:21 +01:00
4dcd0a18df add max post size limit to spring 2024-04-23 19:15:13 +01:00

View File

@ -3,6 +3,9 @@ server:
port: 3000
servlet:
context-path: /
tomcat:
# Limit the maximum POST size to 1MB
max-http-form-post-size: 1MB
# Spring Configuration
spring:
@ -10,7 +13,6 @@ spring:
jackson:
default-property-inclusion: non_null
data:
# MongoDB - This is used for general data storage
mongodb:
uri: mongodb://localhost:27017