Last active
August 29, 2015 14:23
-
-
Save djvdorp/24aac826e6b6009d99e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# download and install sonarqube | |
sudo sh -c 'echo deb http://downloads.sourceforge.net/project/sonar-pkg/deb binary/ > /etc/apt/sources.list.d/sonarqube.list' | |
sudo apt-get update | |
sudo apt-get install sonar | |
sudo systemctl start sonar.service | |
sudo systemctl enable sonar.service | |
# configure firewall and/or reverse proxy in nginx | |
http://stackoverflow.com/questions/25978092/sonarqube-under-nginx-sub-location | |
# now from your browser on your pc access sonar via http://<your-address>:9000 | |
# configure user in sonar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment