diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-04-05 14:15:32 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-04-06 14:57:48 +0200 |
commit | be5e4eb724549ef654d161fcee933dd79ec53b02 (patch) | |
tree | d88f96385f169703811a95b3067cafd6820fed7c /sonar-application | |
parent | 06bc1b81d8e5b7002fdc2bfbf9fdc563fb5084b9 (diff) | |
download | sonarqube-be5e4eb724549ef654d161fcee933dd79ec53b02.tar.gz sonarqube-be5e4eb724549ef654d161fcee933dd79ec53b02.zip |
SONAR-7411 drop support for HTTPs Tomcat connector
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 84 |
1 files changed, 6 insertions, 78 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index 00f8bde74c6..1d700de0695 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -57,9 +57,9 @@ #----- Connection pool settings # The maximum number of active connections that can be allocated # at the same time, or negative for no limit. -# The recommended value is 1.2 * max sizes of HTTP/HTTPS pools. For example if both HTTP and -# HTTPS ports are enabled with default sizes (50, see properties sonar.web.http.maxThreads -# and sonar.web.https.maxThreads) then sonar.jdbc.maxActive should be 1.2 * (50 + 50) = 120. +# The recommended value is 1.2 * max sizes of HTTP pools. For example if HTTP ports are +# enabled with default sizes (50, see property sonar.web.http.maxThreads) +# then sonar.jdbc.maxActive should be 1.2 * (50) = 120. #sonar.jdbc.maxActive=60 # The maximum number of connections that can remain idle in the @@ -108,91 +108,19 @@ #sonar.web.port=9000 -# Recommendation for HTTPS -# SonarQube natively supports HTTPS. However using a reverse proxy -# infrastructure is the recommended way to set up your SonarQube installation -# on production environments which need to be highly secured. -# This allows to fully master all the security parameters that you want. - -# TCP port for incoming HTTPS connections. Disabled when value is -1 (default). -#sonar.web.https.port=-1 - -# HTTPS - the alias used to for the server certificate in the keystore. -# If not specified the first key read in the keystore is used. -#sonar.web.https.keyAlias= - -# HTTPS - the password used to access the server certificate from the -# specified keystore file. The default value is "changeit". -#sonar.web.https.keyPass=changeit - -# HTTPS - the pathname of the keystore file where is stored the server certificate. -# By default, the pathname is the file ".keystore" in the user home. -# If keystoreType doesn't need a file use empty value. -#sonar.web.https.keystoreFile= - -# HTTPS - the password used to access the specified keystore file. The default -# value is the value of sonar.web.https.keyPass. -#sonar.web.https.keystorePass= - -# HTTPS - the type of keystore file to be used for the server certificate. -# The default value is JKS (Java KeyStore). -#sonar.web.https.keystoreType=JKS - -# HTTPS - the name of the keystore 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 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= - -# HTTPS - whether to enable client certificate authentication. -# The default is false (client certificates disabled). -# Other possible values are 'want' (certificates will be requested, but not required), -# and 'true' (certificates are required). -#sonar.web.https.clientAuth=false - -# HTTPS - comma separated list of encryption ciphers to support for HTTPS connections. -# If specified, only the ciphers that are listed and supported by the SSL implementation will be used. -# By default, the default ciphers for the JVM will be used. Note that this usually means that the weak -# export grade ciphers, for instance RC4, will be included in the list of available ciphers. -# The ciphers are specified using the JSSE cipher naming convention (see -# https://www.openssl.org/docs/apps/ciphers.html) -# Example: sonar.web.https.ciphers=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 -#sonar.web.https.ciphers= - # 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 -# based on the sonar.web.connections.acceptCount property. The default value is 50 for each -# enabled connector. +# based on the sonar.web.connections.acceptCount property. The default value is 50. #sonar.web.http.maxThreads=50 -#sonar.web.https.maxThreads=50 -# The minimum number of threads always kept running. The default value is 5 for each -# enabled connector. +# The minimum number of threads always kept running. The default value is 5. #sonar.web.http.minThreads=5 -#sonar.web.https.minThreads=5 # 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 for each enabled connector. +# The default value is 25. #sonar.web.http.acceptCount=25 -#sonar.web.https.acceptCount=25 # TCP port for incoming AJP connections. Disabled if value is -1. Disabled by default. #sonar.ajp.port=-1 |