diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-09-09 22:42:17 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-09-09 22:42:17 +0200 |
commit | 5d5eaaf74d082a1303ce5142f975f71ac31904d9 (patch) | |
tree | 7c6c714dff4059ec323410e7799dc31fa6d387a1 /sonar-application | |
parent | 01810a1cf432885ce101174f4ea813c8ce9c6c36 (diff) | |
download | sonarqube-5d5eaaf74d082a1303ce5142f975f71ac31904d9.tar.gz sonarqube-5d5eaaf74d082a1303ce5142f975f71ac31904d9.zip |
Improve warnings about sonar.search.port/host in sonar.properties
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index acf5aed20d0..c4ac178e12b 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -208,11 +208,12 @@ #sonar.search.javaAdditionalOpts= # Elasticsearch port. Default is 9001. Use 0 to get a free port. -# This port must be private and must not be exposed to the Internet. +# As a security precaution, should be blocked by a firewall and not exposed to the Internet. #sonar.search.port=9001 # Elasticsearch host. The search server will bind this address and the search client will connect to it. # Default is 127.0.0.1. +# As a security precaution, should NOT be set to a publicly available address. #sonar.search.host=127.0.0.1 |