diff options
author | Eli Keimig <cyclops26@users.noreply.github.com> | 2020-12-16 20:12:07 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-01-07 20:13:19 +0000 |
commit | a99185baad6fadbee9b984d323cc4f367aabad35 (patch) | |
tree | 1427b4b238afa273dca7cf67b1aadee5602dbde4 /server | |
parent | aeadee85994fce384fe8d3c907d9e0146ea93b88 (diff) | |
download | sonarqube-a99185baad6fadbee9b984d323cc4f367aabad35.tar.gz sonarqube-a99185baad6fadbee9b984d323cc4f367aabad35.zip |
Update install-server.md
Updated installation documentation to still show an example of a "customized" web host IP without the example being a non-RFC-1918 address to avoid any users accidentally referencing and using that IP address since per best practice security you would never want to be running a server or the service directly on the edge.
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-docs/src/pages/setup/install-server.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-docs/src/pages/setup/install-server.md b/server/sonar-docs/src/pages/setup/install-server.md index a887b244980..c6375a80b0e 100644 --- a/server/sonar-docs/src/pages/setup/install-server.md +++ b/server/sonar-docs/src/pages/setup/install-server.md @@ -142,7 +142,7 @@ The user used to launch SonarQube must have read and write access to those direc The default port is "9000" and the context path is "/". These values can be changed in _$SONARQUBE-HOME/conf/sonar.properties_: ``` -sonar.web.host=192.0.0.1 +sonar.web.host=192.168.0.1 sonar.web.port=80 sonar.web.context=/sonarqube ``` |