[java-idp-tomcat-base] 02/03: Add maxPostSize to connectors
Tom Zeller
tzeller at dragonacea.biz
Mon Aug 8 15:15:10 EDT 2016
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch 8.0
in repository java-idp-tomcat-base.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-tomcat-base.git;a=commit;h=d8524746efa704c053f472fce102a4fa2cb156a0
commit d8524746efa704c053f472fce102a4fa2cb156a0
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Mon Aug 8 14:12:26 2016 -0500
Add maxPostSize to connectors
---
src/main/resources/tomcat-base/conf/server.xml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/main/resources/tomcat-base/conf/server.xml b/src/main/resources/tomcat-base/conf/server.xml
index e9fc602..99fbeb1 100644
--- a/src/main/resources/tomcat-base/conf/server.xml
+++ b/src/main/resources/tomcat-base/conf/server.xml
@@ -54,7 +54,8 @@
-->
<Connector port="${tomcat.nonhttps.port}" protocol="HTTP/1.1"
connectionTimeout="20000"
- redirectPort="8443" />
+ redirectPort="8443"
+ maxPostSize="100000" />
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
@@ -74,6 +75,7 @@
-->
<Connector port="${tomcat.backchannel.port}" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150"
+ maxPostSize="100000"
SSLEnabled="true"
scheme="https"
secure="true"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list