Hi,
I am currently working on the implementation of SSL for the HTTPS-Listener in Wildfly 26.0.1
The documentation shows those parameters (same as I know from Wildfly 10.x)
<https-listener name="default" socket-binding="https" security-realm="ssl-realm" />
but in standalone.xml it looks like this...
<https-listener name="https" socket-binding="https" ssl-context="applicationSSC" enable-http2="true"/>
The parameter ssl-context is not really documented and in fact not in context of https-listener.
So what to do there?
Add the parameter security-realm="ssl-realm" or change ssl-context="applicationSSC" against security-realm="ssl-realm"?
Any clues?