Reverse proxy oauth

I am trying to setup a reverse proxy that utilizes oauth.

Now I can go to http://192.168.5.3 and login and it would return /callback.

But when I now use https://subdomain.domain.com/callback it doesn’t work which leads to me to believe it garbles the link. Currently I have.

    proxy http://192.168.5.3:4510 {
            transparent
    }

Removed transparent but solved by changing my app to account for https as it was passing http due to not being proxy agnostic.

This topic was automatically closed after 30 days. New replies are no longer allowed.