diff options
author | jason.damour <jason.damour@five9.com> | 2022-03-09 18:01:34 -0800 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-03-11 10:30:55 +0000 |
commit | c1ae960d80677e8f13d033742b754a2221dbc33e (patch) | |
tree | c9bd3559324e98692afc04b963ee5242be6b781d /sonar-application | |
parent | 9e044bfd2a1a70ccdbf2b09c0e1252a21d93b51c (diff) | |
download | sonarqube-c1ae960d80677e8f13d033742b754a2221dbc33e.tar.gz sonarqube-c1ae960d80677e8f13d033742b754a2221dbc33e.zip |
feat: support configuration of the tomcat keepAliveTimeout
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index bedc8e9af88..34287b47309 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -121,6 +121,12 @@ # The default value is 25. #sonar.web.http.acceptCount=25 +# The number of milliseconds this Connector will wait for another HTTP request before closing the +# connection. The default value is to use the value that has been set for the connectionTimeout +# attribute. Use a value of -1 to indicate no (i.e. infinite) timeout. +# The default value is 25. +#sonar.web.http.keepAliveTimeout=60000 + # By default users are logged out and sessions closed when server is restarted. # If you prefer keeping user sessions open, a secret should be defined. Value is # HS256 key encoded with base64. It must be unique for each installation of SonarQube. |