We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aeec47 commit 42c470fCopy full SHA for 42c470f
defaults/main.yml
@@ -24,6 +24,8 @@ tomcat_packages:
24
25
tomcat_secure_http_headers: true
26
27
+tomcat_connection_timeout: 20000
28
+
29
########################################
30
# Security Variables
31
templates/catalina_base.conf.server.xml.j2
@@ -19,7 +19,7 @@
19
<Service name="Catalina">
20
21
<Connector port="{{ tomcat_http_port }}" protocol="HTTP/1.1"
22
- connectionTimeout="20000" scheme="http"
+ connectionTimeout="{{ tomcat_connection_timeout }}" scheme="http"
23
{{ tomcat_http_connector_options }}
/>
0 commit comments