skip to Main Content

Azure AD integration with sonarqube – Nginx

I am running sonarqube on https by using nginx reverse proxy. This is my nginx reverse proxy config. server{ server_name sonarqube.mydomain.co.in; access_log /var/log/nginx/sonar.access.log; error_log /var/log/nginx/sonar.error.log; proxy_buffers 16 64k; proxy_buffer_size 128k; location / { proxy_pass http://127.0.0.1:9000; proxy_next_upstream error timeout invalid_header http_500…

VIEW QUESTION

NGINX reverse proxy rewrite SAML callback

SonarQube on windows, running on http://localhost/9000. I'm setting up NGINX to use as a reverse proxy and serve on https://localip.com. I'm getting the following EE when trying to connect to SonarQube You're not authorized to access this page. Please contact…

VIEW QUESTION

Unable to setup SonarQube for python in centos 7

I am trying to get SonarQube for python up and running in centos. I have downloaded this version : sonarqube-8.3.1.34397.zip. I have installed java 11. java -version openjdk version "11.0.7" 2020-04-14 LTS OpenJDK Runtime Environment 18.9 (build 11.0.7+10-LTS) OpenJDK 64-Bit…

VIEW QUESTION
Back To Top
Search