diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-07-22 15:27:06 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-07-22 15:27:06 +0200 |
commit | 412ab70d2dc1f908745ed50de72f58eb276fe715 (patch) | |
tree | 75bc0f715aea48cfb3e59dc704f2c31d2c8274c2 /sonar-application/src/main | |
parent | dd7ca50b28422f8728cf26b096d22dced32863cf (diff) | |
download | sonarqube-412ab70d2dc1f908745ed50de72f58eb276fe715.tar.gz sonarqube-412ab70d2dc1f908745ed50de72f58eb276fe715.zip |
Document property sonar.auth.jwtBase64Hs256Secret
Diffstat (limited to 'sonar-application/src/main')
-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 e2d938a2a9f..73bb3d49363 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -122,6 +122,12 @@ # TCP port for incoming AJP connections. Disabled if value is -1. Disabled by default. #sonar.ajp.port=-1 +# 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 +#sonar.auth.jwtBase64Hs256Secret= #-------------------------------------------------------------------------------------------------- # COMPUTE ENGINE |