Hey all - I've been looking around and couldn't fi...
# gooddata-cn
a
Hey all - I've been looking around and couldn't find anything noting this, so I thought I'd ask the group. I am running the All In One Community Edition behind NGINX, attempting to configure OIDC with Azure AD... my problem is that GoodData sends the redirect uri as http://mydomain:443/... rather than https://mydomain/... it's a problem because Azure won't accept a redirect uri that starts with http. Where should I go to change this? Wanting to make my redirect_url start with https://
i
Hi Austin, Could you kindly confirm that you are following these instructions, please? https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app Where exactly are you getting this “http” redirect uri from?
a
Just to follow-up on this, I figured out my issue. The problem was with how I had NGINX configured. I was missing the forwarded schema.
🙌 1
Thanks for the reply
Added this to my route in NGINX and fixed the issue.
Copy code
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_set_header X-Forwarded-Port $server_port;
i
Nicely done, thanks a lot for sharing with us your findings and the solution!