We are implementing Authentication using keycloak. Specifically for forgot password option: When user clicks on Forgot password option, and provides user name, an email wil
Got this resolved after multiple discussion with Redhat team. Below are the steps followed
The server didn't start because this tag is not available in Keycloak 7.0.x. as confirmed by Redhat.
Before change:
header=x-forwarded-host= <External Host>
header=Host= <Internal host:8443>
After Change:
header=x-forwarded-host= <External Host>
header=Host= <External Host>
the tag would retain the forwarded host header.