commit
66090e5cca
2 changed files with 2 additions and 10 deletions
|
@ -332,7 +332,7 @@ $ keytool -import -alias yourdomain -keystore keycloak.jks -file your-certificat
|
|||
</programlisting>
|
||||
</para>
|
||||
<para>
|
||||
Check the <ulink url="https://docs.jboss.org/author/display/WFLY8/SSL+setup+guide">Wildfly</ulink> documentation for more information on fine tuning the socket connections.
|
||||
Check the <ulink url="https://docs.jboss.org/author/display/WFLY8/Undertow+(web)+subsystem+configuration">Wildfly Undertow</ulink> documentation for more information on fine tuning the socket connections.
|
||||
</para>
|
||||
</section>
|
||||
<section>
|
||||
|
|
|
@ -637,15 +637,7 @@ public class TokenService {
|
|||
return true;
|
||||
}
|
||||
|
||||
if (uriInfo.getBaseUri().getScheme().equals("https")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if ("https".equals(headers.getHeaderString("X-Forwarded-Proto"))) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
return uriInfo.getBaseUri().getScheme().equals("https");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue