We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec2710 commit bf56bd4Copy full SHA for bf56bd4
1 file changed
src/main/java/eu/openanalytics/containerproxy/ContainerProxyApplication.java
@@ -158,6 +158,7 @@ public static Properties getDefaultProperties() {
158
// disable multi-part handling by Spring. We don't need this anywhere in the application.
159
// When enabled this will cause problems when proxying file-uploads to the shiny apps.
160
properties.put("spring.servlet.multipart.enabled", "false");
161
+ properties.put("server.undertow.max-http-post-size", "-1");
162
163
// disable logging of requests, since this reads part of the requests and therefore undertow is unable to correctly handle those requests
164
properties.put("logging.level.org.springframework.web.servlet.DispatcherServlet", "INFO");
0 commit comments