Running UD in Docker (Azure Web App) - Redirect URL HTTP not HTTPS

Is anyone running UD in a Docker container using Authentication?

Running into a snag here - Moving my UD from manual deploy to more CI/CD with Azure DevOps, Docker containers and Azure ACR. Everything is working fine (UD Loads in Docker) but the authentication is causing some headaches.

For some reason, the redirect_uri in the header always seems to be passing HTTP instead of https

Example - redirect_uri=http%3A%2F%2Fuddocker1827.azurewebsites.net%2Fsignin-oidc

but if i deploy UD directly into an Azure Web App the login works with the correct redirect_uri

Anyone run into this?

I’m having this exact same issue. Have you figured anything out @mylabonline?

Yes it has to do with the UD Dashboard listening on port 80 when it starts. UD Must be listening on HTTPS with the required cert when running in a container. for the Web App it seems an Azure web app is doing the proxying to/from the azurewebsites.net URL.

I havent yet tested installing a self signed certificate on the local container to start UD in HTTPS got distracted on other projects.