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

AzureBlobStorage AuthorizationPermissionMismatch error using User Managed Identities, Python SDK from AKS – Debian

I'm running a Python app in AKS (as a Job, but doesn't matter), using the Azure Python SDK to access blob storage. I'm using a User Managed Identity for auth, using ManagedIdentityCredential with the client_id kwarg (see https://learn.microsoft.com/en-us/python/api/azure-identity/azure.identity.managedidentitycredential?view=azure-python). It is…

VIEW QUESTION
Back To Top
Search