SSL certificate Installation

Hi,

I wish to install the SSL certificate on the SonarQube server. For that, I installed Nginx to reverse proxy to the server.
I went to /etc/nginx/sites-available and edited the “default” with

listen 443 ssl;
server_name 10.124.18.56;
ssl_certificate /etc/ssl/certs/{wild+root+inter}.cer
ssl_certificate_key /etc/ssl/certs/{privatekey}.key
location / {

            # First attempt to serve request as file, then
            # as directory, then fall back to displaying a 404.
            #try_files $uri $uri/ =404;
            proxy_pass http://ip address:9000;
            
    }

After restarting the nginx I was unable to do and getting the error
" Job for nginx.service failed because the control process exited with error code."

Note: For HTTP configuration with port 80 is successful but HTTPS of 443 configuration I’m getting error.

Need help with this issue or entire SSL certificate Installation for SonarQube server.

Hey there.

This is a question probably best suited for Nginx support – SonarQube itself isn’t aware of the proxy. Checking the Nginx logs is probably a good place to start.