Hello,
I’m currently using ;
- SonarQube 7.9.2 running on a docker.
- Scanner ; Sonar Scanner (version 4.2.0).
- what I’m trying to achieve ; Secure traffic between SonarQube and Sonar Scanner.
Current commandes used to launch the scan ;
sonar-scanner --debug --define sonar.login=“name-of-account” \
–define sonar.password=“my-password” \
–define sonar.analysis.mode=publish \
–define sonar.host.url=“http://172.17.0.1:9000/” \
–define sonar.sources=“project-name” \
–define sonar.sourceEncoding=“UTF-8” \
-
Issue : The credentials are sent not encrypted to SonarQube(server). As later I will have to deploy the solution (SonarQube) on a public server I want to know how I can secure (encrypt) the traffic ?
-
what have you tried so far ; This tutorial ;
https://docs.sonarqube.org/display/SONARQUBE53/Settings+Encryption
Thank you in advance for your help.