]
Gary Brown resolved RTGOV-643.
------------------------------
Resolution: Done
keycloak configuration should not include host/port
---------------------------------------------------
Key: RTGOV-643
URL:
https://issues.jboss.org/browse/RTGOV-643
Project: RTGov (Run Time Governance)
Issue Type: Feature Request
Reporter: Jorge Morales
Assignee: Gary Brown
Keycloak configuration should not include host and port to enable to have the server
running in a VM/docker container and the host exposed port be different than the internal
guest port. Otherwise, keycloak will try to redirect to that host:port being not
accessible.
Change
{code}
<xsl:element name="auth-server-url"
namespace="urn:jboss:domain:keycloak:1.0">http://localhost:8080/auth</xsl:element>
{code}
with:
{code}
<xsl:element name="auth-server-url"
namespace="urn:jboss:domain:keycloak:1.0">/auth</xsl:element>
{code}