Configure SSL for SonarQube on Windows

The documentation for SonarQube explains how to configure SSL when you're running on Linux and how to use the native Tomcat functionality for a simple test environment, yet they recommend not to use this functionality in any production like setting.

Instead SonarQube recommends the use of a Reverse Proxy to secure you sonar installation. With the help of IIS and the Url Rewrite module, that's a piece of cake to setup.

What you'll need:

After installing and enabling these features, I had to do an IIS Reset and re-open the IIS Manager for all features to start working.

Next we'll go through the steps to configure the reverse proxy.

First step is to create a IIS website which will act as the reverse proxy.

Unless you're required to do Kerberos authentication, you don't need to configure any form of authentication on your Reverse Proxy. It should forward the challenge from SonarQube if you've configured Active Directory integration there.

If you are using Kerberos or IIS Advanced protection, please look here for guidance on configuring that correctly.

Configure the binding to use SSL and setup the correct hostnames and the certificate. I'm cheating a little by using the IIS Express Development Certificate installed on my machine:

Next we'll open the URL Rewrite settings to configure reverse proxy:

Click Add Rule to create a new rule

And pick "Reverse Proxy" from the list of templates:

Enter the destination server URL (can be http://localhost:9000, or even a remote server) and click OK to create the rule:

You're back in the URL Rewrite screen where we'll need to add an extra server variable which we'll send along with the request to the other server in order to tell SonarQube it's actually behind a Reverse Proxy that's doing the SSL offloading for it:

Click "Add..." to create the server variable:

Add the server variable "X_FORWARDED_PROTO" to allow the Rewrite Module to manipulate this header:

You should now have the variable listed in the Variable list. Click "Go back to Rules" to move back to the rules list:

Edit the URL Rewrite rule you've just created:

Expand the Server variables section of the rule definition:

Add the "X_FORWARDED_PROTO" header you've allowed in the previous step and give it the value "https":

Apply the changes:

And now you should be able to access SonarQube over SSL. You may want to configure the original SonarQube instance to only accept traffic from your reverse proxy or only accept traffic from localhost through the Windows Firewall.