diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-11-02 10:04:56 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-11-02 10:04:56 +0000 |
commit | 6f58bd9590ea5645eb38a1b2c45c7a0e3ac76e96 (patch) | |
tree | d7f695d64ef5e6c8c6664c4d24a71004afb40204 /sonar-application | |
parent | 6167b0fd221a833bfa2298ea785b9f967e434c7a (diff) | |
download | sonarqube-6f58bd9590ea5645eb38a1b2c45c7a0e3ac76e96.tar.gz sonarqube-6f58bd9590ea5645eb38a1b2c45c7a0e3ac76e96.zip |
add documentation about HTTP proxies in conf/sonar.properties
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index f05c7f385e5..8702cdb73a7 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -105,3 +105,16 @@ sonar.jdbc.timeBetweenEvictionRunsMillis: 30000 # If you don't use the default JDBC drivers, as listed above, then you have to explicitly set the dialect to use. # Values are : mysql, derby, oracle, postgresql #sonar.jdbc.dialect= + + +#--------------------------------------------------------- +# UPDATE CENTER +#--------------------------------------------------------- + +# The Update Center requires an internet connection to request http://update.sonarsource.org +# If needed, HTTP proxy can be configured with standard Java environment variables : -Dhttp.proxyHost +# and -Dhttp.proxyPort. System configuration can also be used with -Djava.net.useSystemProxies=true. +# These properties can not be set in this file. + +# Update Center is activated by default. +#sonar.updatecenter.activate=true |