From 8bd887c268346b0fa14a0aea3c4c7cca2bd970c6 Mon Sep 17 00:00:00 2001
From: Lukas Malte Monnerjahn <lukasmalte.monnerjahn@dataport.de>
Date: Tue, 1 Oct 2024 17:06:32 +0200
Subject: [PATCH] change deprecated tomcat config setting name

---
 src/main/resources/application.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml
index 393a557..ce3c52d 100644
--- a/src/main/resources/application.yml
+++ b/src/main/resources/application.yml
@@ -8,8 +8,6 @@ spring:
 
 server:
   port: 8443
-  tomcat.max-http-post-size: 10MB
-  tomcat.max-swallow-size: 10MB
   ssl:
     # enthaelt den privaten und oeffentlichen Schluessel der Anwendung
     key-store: classpath:store/xta-test-server_keystore.p12
@@ -26,6 +24,9 @@ server:
     # wird ein Client Zertifikat benoetigt
     client-auth: want
   thymeleaf.cache: false
+  tomcat:
+    max-http-form-post-size: 10MB
+    max-swallow-size: 10MB
 
 app:  
   server:
-- 
GitLab