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 /server/sonar-docs/src/pages/setup/sonar-properties.md | |
parent | 9e044bfd2a1a70ccdbf2b09c0e1252a21d93b51c (diff) | |
download | sonarqube-c1ae960d80677e8f13d033742b754a2221dbc33e.tar.gz sonarqube-c1ae960d80677e8f13d033742b754a2221dbc33e.zip |
feat: support configuration of the tomcat keepAliveTimeout
Diffstat (limited to 'server/sonar-docs/src/pages/setup/sonar-properties.md')
-rw-r--r-- | server/sonar-docs/src/pages/setup/sonar-properties.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/sonar-docs/src/pages/setup/sonar-properties.md b/server/sonar-docs/src/pages/setup/sonar-properties.md index 6073c4edc36..6d7ab42c308 100644 --- a/server/sonar-docs/src/pages/setup/sonar-properties.md +++ b/server/sonar-docs/src/pages/setup/sonar-properties.md @@ -93,6 +93,9 @@ The minimum number of threads always kept running. The default value is 5. **`SONAR_WEB_HTTP_ACCEPTCOUNT=25`** The maximum queue length for incoming connection requests when all possible request processing threads are in use. Any requests received when the queue is full will be refused. The default value is 25. +**`SONAR_WEB_HTTP_KEEPALIVETIMEOUT=60000`** +The number of milliseconds this Connector will wait for another HTTP request before closing the connection. Use a value of -1 to indicate no (i.e. infinite) timeout. The default value is 60000 (ms). + **`SONAR_AUTH_JWTBASE64HS256SECRET=`** 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. Example of command-line: echo -n "type_what_you_want" | openssl dgst -sha256 -hmac "key" -binary | base64 |