diff options
author | John W <jjw-github@johntology.org> | 2014-03-13 21:36:54 -0400 |
---|---|---|
committer | John W <jjw-github@johntology.org> | 2014-03-20 00:17:54 -0400 |
commit | feb22f360ed9e38f32b80ec2c6aa942a704f6b05 (patch) | |
tree | 81614773c3a18ac4faae0313ec755032e55d7a33 /sonar-application | |
parent | 368424c84970d2e18646351c71dfcc84ab96abf0 (diff) | |
download | sonarqube-feb22f360ed9e38f32b80ec2c6aa942a704f6b05.tar.gz sonarqube-feb22f360ed9e38f32b80ec2c6aa942a704f6b05.zip |
Adding properties/comments for truststore configuration
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index b97e9e3da21..d6aa431d730 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -116,6 +116,23 @@ sonar.jdbc.timeBetweenEvictionRunsMillis=30000 # and the first provider that supports the keystore type is used (see sonar.web.https.keystoreType). #sonar.web.https.keystoreProvider= +# HTTPS - the pathname of the truststore file which contains trusted certificate authorities. +# By default, this would be the cacerts file in your JRE. +# If truststoreFile doesn't need a file use empty value. +#sonar.web.https.truststoreFile= + +# HTTPS - the password used to access the specified truststore file. +#sonar.web.https.truststorePass= + +# HTTPS - the type of truststore file to be used. +# The default value is JKS (Java KeyStore). +#sonar.web.https.truststoreType=JKS + +# HTTPS - the name of the truststore provider to be used for the server certificate. +# If not specified, the list of registered providers is traversed in preference order +# and the first provider that supports the truststore type is used (see sonar.web.https.truststoreType). +#sonar.web.https.truststoreProvider= + # The maximum number of connections that the server will accept and process at any given time. # When this number has been reached, the server will not accept any more connections until # the number of connections falls below this value. The operating system may still accept connections |