summaryrefslogtreecommitdiffstats
path: root/base/server/tomcat7
diff options
context:
space:
mode:
authorJack Magne <jmagne@dhcp-16-206.sjc.redhat.com>2016-05-12 15:21:34 -0700
committerJack Magne <jmagne@dhcp-16-206.sjc.redhat.com>2016-05-12 15:23:40 -0700
commitb0ee4e8ea25f8a645015ace4eb5413fb11e96f50 (patch)
treebe53d3fa25f93deb20266030213f017a6ce94608 /base/server/tomcat7
parentce83d2ae2b33cca1e8b035474142fcbe2369ccc4 (diff)
downloadpki-b0ee4e8ea25f8a645015ace4eb5413fb11e96f50.tar.gz
pki-b0ee4e8ea25f8a645015ace4eb5413fb11e96f50.tar.xz
pki-b0ee4e8ea25f8a645015ace4eb5413fb11e96f50.zip
Update default values of connectionTimeout to format smart cards
Ticket #1921 Trivial fix to add or up this connectionTimeout value to 80000 or 80 secs. Fix already tested informally in the field by QE.
Diffstat (limited to 'base/server/tomcat7')
-rw-r--r--base/server/tomcat7/conf/server.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/base/server/tomcat7/conf/server.xml b/base/server/tomcat7/conf/server.xml
index 55c626d6c..eb4ef8e5f 100644
--- a/base/server/tomcat7/conf/server.xml
+++ b/base/server/tomcat7/conf/server.xml
@@ -125,7 +125,7 @@ Tomcat Port = [TOMCAT_SERVER_PORT] (for shutdown)
<Connector name="[PKI_UNSECURE_PORT_CONNECTOR_NAME]" port="[PKI_UNSECURE_PORT]" protocol="HTTP/1.1" redirectPort="[PKI_SECURE_PORT]"
maxHttpHeaderSize="8192"
acceptCount="100" maxThreads="150" minSpareThreads="25"
- enableLookups="false" connectionTimeout="20000" disableUploadTimeout="true"
+ enableLookups="false" connectionTimeout="80000" disableUploadTimeout="true"
/>
<!-- Define a SSL HTTP/1.1 Connector on port 8443 -->
@@ -185,6 +185,7 @@ Tomcat Port = [TOMCAT_SERVER_PORT] (for shutdown)
-->
<Connector name="[PKI_SECURE_PORT_CONNECTOR_NAME]" port="[PKI_SECURE_PORT]" protocol="HTTP/1.1" SSLEnabled="true" sslProtocol="SSL" scheme="https" secure="true"
maxHttpHeaderSize="8192"
+ connectionTimeout="80000"
acceptCount="100" maxThreads="150" minSpareThreads="25"
enableLookups="false" disableUploadTimeout="true"
sslImplementationName="org.apache.tomcat.util.net.jss.JSSImplementation"