我们在连接到 Okta OIDC 的 Apache 服务器中使用了 mod auth openidc 模块。登录到 okta 后,我们将多次重定向回重定向,然后再次返回 okta。类似于以下问题的内容:
正如本期所讨论的那样。 https://github.com/zmartzone/mod_auth_openidc/issues/181
我已确保 redirect_uri 与实际 url 页面加载 url 是分开的
My set up is exactly as below with a vanity redirection url which is protected
# OIDCRedirectURI is a vanity URL that must point to a path protected by this module but must NOT
point to any content
OIDCRedirectURI https://www.example.com/example/redirect_uri
OIDCCryptoPassphrase <password>
<Location /example/>
AuthType openid-connect
Require valid-user
ProxyPass backendangular/
ProxyPassReverse backendangular/
</Location>