Reputation: 95
Hello I have set up CI/CD on my project using SonarQube, my SonarQube is hosted on a server and GitLab connects to it, but for some reason after the analysis is finished it posts a summary of the analysis as a comment on merge request but the link is directed to localhost:9000 not my server link where the analysis can actually be accessed.
how could I make it point to my server link?
Upvotes: 1
Views: 2289
Reputation: 9136
You have to configure the server public URL:
Administration
tabConfiguration → General settings → General
menuGeneral
section, change the Server base URL
to the public URLCopy-pasted from: https://docs.bitnami.com/aws/apps/sonarqube/administration/configure-domain/
Upvotes: 2