-
Is there a way to verify the Cloudflare JWT and still do an OIDC login? When using the Cloudflare Zero Trust feature, Cloudflare issues a JWT to the backend, both as a Header and a Cookie: https://developers.cloudflare.com/cloudflare-one/identity/authorization-cookie/validating-json/#verify-the-jwt-manually.
The JWT from Cloudflare token can be verified with Using the latter (i.e. Is it also possible to restrict access by verifying the Cloudflare JWT but then perform an additional but distinct OIDC login? Can this be achieved with either Note: There is also https://httpd.apache.org/docs/trunk/mod/mod_autht_jwt.html but it does not appear to be available as a stable module yet and it also appears to be restricted to reading the JWT from the In our tests, the behavior was that the JWT was verified successfully and OIDC login was skipped, or, when using For example, the following results in successful JWT verification but no OIDC login if a JWT is present and an OIDC login if no JWT is present:
The following example on the other hand results in failed JWT verification because of a missing
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
AuthType auth-openidc by design requires only of of the two to succeed. Your 2nd example seems the same as the 1st example? |
Beta Was this translation helpful? Give feedback.
ah, I see; I guess you can do tihs with mod_oauth2 and mod_auth_openidc in two different vhosts (or servers), vhost1 and vhost2 respectively. vhost1 would trigger mod_oauth2 and then ProxyPass to vhost2 that handles OIDC