]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-15213 Add minimum inactivity timeout duration to environment variables docs
authormichaelbirnstiehl <michael.birnstiehl@sonarsource.com>
Mon, 26 Jul 2021 19:33:28 +0000 (14:33 -0500)
committersonartech <sonartech@sonarsource.com>
Tue, 27 Jul 2021 20:03:02 +0000 (20:03 +0000)
server/sonar-docs/src/pages/setup/sonar-properties.md
sonar-application/src/main/assembly/conf/sonar.properties

index 2bc9392456bcff5bc38e72f618646a30b9f99c73..692a00e4bbef7150c1bb2abdf2ccc9b0dbc88e2e 100644 (file)
@@ -98,7 +98,7 @@ By default users are logged out and sessions closed when server is restarted. If
 echo -n "type_what_you_want" | openssl dgst -sha256 -hmac "key" -binary | base64
 
 **`SONAR_WEB_SESSIONTIMEOUTINMINUTES=4320`**  
-The inactivity timeout duration of user sessions, in minutes. After the configured period of time, the user is logged out. The default value is set to 3 days (4320 minutes) and cannot be greater than 3 months. Value must be strictly positive.
+The inactivity timeout duration of user sessions, in minutes. After the configured period of time, the user is logged out. The default value is 3 days (4320 minutes). The value cannot be less than 6 minutes or greater than 3 months (129600 minutes). Value must be strictly positive.
 
 **`SONAR_WEB_SYSTEMPASSCODE=`**  
 A passcode can be defined to access some web services from monitoring tools without having to use the credentials of a system administrator. Check the Web API documentation to know which web services are supporting this authentication mode. The passcode should be provided in HTTP requests with the header "X-Sonar-Passcode". By default feature is disabled.
@@ -132,7 +132,7 @@ Enable the LDAP feature
 Set to true when connecting to a LDAP server using a case-insensitive setup.
 
 **`LDAP_URL=ldap://localhost:10389`**  
-URL of the LDAP server. Note that if you are using ldaps, then you should install the server certificate into the Java truststore.
+URL of the LDAP server. Note that if you are using LDAPS, then you should install the server certificate into the Java truststore.
 
 **`LDAP_BINDDN=cn=sonar,ou=users,o=mycompany`**  
 Bind DN is the username of an LDAP user to connect (or bind) with. Leave this blank for anonymous access to the LDAP directory (optional)
index b3d8002ccd3501019cbe0afc1870c11de1fd7d68..f62ffb272d501969b201af0a8dd92aa1be9864d3 100644 (file)
 # The inactivity timeout duration of user sessions, in minutes. After the configured
 # period of time, the user is logged out.
 # The default value is set to 3 days (4320 minutes).
-# It must be set between 5 minutes and 3 months.
+# It must be set between 6 minutes and 3 months (129600 minutes).
 # Value must be strictly positive.
 #sonar.web.sessionTimeoutInMinutes=4320