-
I'm trying to use this in conjunction with Auth0. I've configured an application within Auth0 and I've configured a virtual host in Apache with what I believe is the appropriate configuration. When I browse to the protected URL, I am redirected off to Auth0 where I enter my username and password. I'm then redirected back to "redirect_uri?code=xxxxxxx". The web page says "Submitting..." but the page keeps on re-submitting ... Looking at the debug logs, I'm seeing this (with redactions):
The Apache config is (with redactions):
I'm not sure why it is reporting "no authenticated user yet". I'm not sure why it is looping, posting to the redirect_uri over and over again. I did experiment with |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I'd need to see the full debug log and the version of the module used to analyze. |
Beta Was this translation helpful? Give feedback.
-
I think I've solved this; I think that the root problem was that:
wasn't setting |
Beta Was this translation helpful? Give feedback.
I think I've solved this; I think that the root problem was that:
wasn't setting
Proxy-User
to a usable value. I've now switched to usingOIDCRemoteUserClaim email
and configured the underlying software to useREMOTE_USER
rather thanProxy-User
. That seems to be getting me further, although the underlying software is still giving me problems. I am, however, happy that I've got a working configuration as far asmod_auth_openidc
is concerned.