diff options
Diffstat (limited to 'sonar-application/src/main/assembly/conf/sonar.properties')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 59 |
1 files changed, 35 insertions, 24 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index 28ce4528bbb..3b4fc79cd0e 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -1,4 +1,3 @@ -#-------------------------------------------------------- # This file must contain only ISO 8859-1 characters # see http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Properties.html#load(java.io.InputStream) # @@ -8,34 +7,45 @@ # # # See also the file conf/wrapper.conf for JVM advanced settings -#--------------------------------------------------------- -#--------------------------------------------------------- -# WEB SETTINGS - STANDALONE MODE ONLY -# These settings are ignored when the war file is deployed to a JEE server. -#--------------------------------------------------------- -# Listen host/port and context path (for example / or /sonar). Default values are 0.0.0.0:9000/. + +#-------------------------------------------------------------------------------------------------- +# WEB SERVER + +# Binding address #sonar.web.host=0.0.0.0 + +# TCP port for incoming HTTP connections #sonar.web.port=9000 + +# Web context must start with slash (/) #sonar.web.context=/ -# Log HTTP requests. Deactivated by default. -#sonar.web.jettyRequestLogs= ../../logs/jetty-yyyy_mm_dd.request.log -#sonar.web.jetty.threads.min=5 -#sonar.web.jetty.threads.max=50 +# 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. +#sonar.web.connections.maxThreads=50 + +# The minimum number of threads always kept running. If not specified, the default of 5 is used. +#sonar.web.connections.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. +#sonar.web.connections.acceptCount=25 -#----------------------------------------------------------------------- + + +#-------------------------------------------------------------------------------------------------- # DATABASE # -# IMPORTANT: the embedded database H2 is used by default. -# It is recommended for tests only. Please use an external database -# for production environment (MySQL, Oracle, Postgresql, SQLServer) -# -#----------------------------------------------------------------------- +# IMPORTANT: the embedded H2 database is used by default. It is recommended for tests only. +# Please use a production-ready database. Supported databases are MySQL, Oracle, PostgreSQL +# and Microsoft SQLServer. -#----- Credentials -# Permissions to create tables and indexes must be granted to JDBC user. +# Permissions to create tables, indices and triggers must be granted to JDBC user. # The schema must be created first. sonar.jdbc.username=sonar sonar.jdbc.password=sonar @@ -100,12 +110,12 @@ sonar.jdbc.minEvictableIdleTimeMillis=600000 sonar.jdbc.timeBetweenEvictionRunsMillis=30000 -#--------------------------------------------------------- + +#-------------------------------------------------------------------------------------------------- # UPDATE CENTER -#--------------------------------------------------------- # The Update Center requires an internet connection to request http://update.sonarsource.org -# It is activated by default: +# It is enabled by default. #sonar.updatecenter.activate=true # HTTP proxy (default none) @@ -123,9 +133,10 @@ sonar.jdbc.timeBetweenEvictionRunsMillis=30000 #http.proxyUser= #http.proxyPassword= -#--------------------------------------------------------- + + +#-------------------------------------------------------------------------------------------------- # NOTIFICATIONS -#--------------------------------------------------------- # Delay (in seconds) between processing of notification queue sonar.notifications.delay=60 |