diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-10-21 17:07:24 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-10-21 17:07:49 +0200 |
commit | cda2773b5ec6b436c2b966ed04147b1dfeab2f67 (patch) | |
tree | 5d13e003ad40f43136a62d8f828d0cc7d8730f9d /sonar-application/src/main/assembly/conf/sonar.properties | |
parent | 6079ef842ee0ac3d9f86f2dad3784dc9cb92ac5e (diff) | |
download | sonarqube-cda2773b5ec6b436c2b966ed04147b1dfeab2f67.tar.gz sonarqube-cda2773b5ec6b436c2b966ed04147b1dfeab2f67.zip |
Property sonar.web.host was used for shutdown port
But not for HTTP/HTTPS connectors
Diffstat (limited to 'sonar-application/src/main/assembly/conf/sonar.properties')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index 3c4b407266b..6f4308af6c9 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -86,8 +86,10 @@ sonar.jdbc.timeBetweenEvictionRunsMillis=30000 #-------------------------------------------------------------------------------------------------- # WEB SERVER -# Binding address -#sonar.web.host=0.0.0.0 +# Binding IP address. For servers with more than one IP address, this property specifies which +# address will be used for listening on the specified ports. +# By default, ports will be used on all IP addresses associated with the server. +#sonar.web.host= # Web context. When set, it must start with forward slash (for example /sonarqube). # The default value is root context (empty value). |