You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
In our project we have 2 different ways of authentication:
automatic mode: a normal authentication way to login: using /login.html, users login with OIDCAuthRequestParams 'acr_values=normal'
manual mode/password mode: our application is also used for factories, in this case, not everyone has a computer, they use their login/password to authenticate: using /login.html?params=shared or /login-shared.html, users login with OIDCAuthRequestParams 'acr_values=password'
The /login.html is a static login page that we created and bypassed the oidc check.
We have tried with several ways to distinguish urls and set this parameter, but no luck. Everytime 2 cases fall into the last condition.
Exemples of configuration test:
using location: OIDCAuthRequestParams 'acr_values=normal' <Location /login-shared.html> OIDCAuthRequestParams 'acr_values=password' </Location>
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
In our project we have 2 different ways of authentication:
using /login.html, users login with OIDCAuthRequestParams 'acr_values=normal'
using /login.html?params=shared or /login-shared.html, users login with OIDCAuthRequestParams 'acr_values=password'
The /login.html is a static login page that we created and bypassed the oidc check.
We have tried with several ways to distinguish urls and set this parameter, but no luck. Everytime 2 cases fall into the last condition.
Exemples of configuration test:
using location:
OIDCAuthRequestParams 'acr_values=normal'
<Location /login-shared.html>
OIDCAuthRequestParams 'acr_values=password'
</Location>
using query_string:
<If "%{QUERY_STRING} !(^|&)param=shared($|&)">
DEFINE OIDC_AUTH_REQUEST_PARAMS 'acr_values=normal
</If>
<Else>
DEFINE OIDC_AUTH_REQUEST_PARAMS 'acr_values=password'
</Else>
OIDCAuthRequestParams "${OIDC_AUTH_REQUEST_PARAMS}"
We are blocked in this problem. Do you have a suggestion for it ? Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions