【发布时间】:2020-10-18 18:00:15
【问题描述】:
我们在连接到 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>
【问题讨论】:
标签: apache httpd.conf mod-auth-openidc