Skip to content

Instantly share code, notes, and snippets.

@int128
Created December 28, 2016 10:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save int128/c2dac85dfe24b35803057a4c808f827c to your computer and use it in GitHub Desktop.
Save int128/c2dac85dfe24b35803057a4c808f827c to your computer and use it in GitHub Desktop.
Nginx conf for Sonar 6.x behind SSL-termination
# Sonarqube
server {
listen 80;
server_name sonar.example.com;
location / {
proxy_pass http://sonarqube:9000;
proxy_redirect http://sonarqube:9000 https://sonar.example.com;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment