Module io.avaje.jex.ssl


module io.avaje.jex.ssl
Defines the SSL Plugin API for configuring SSL and mTLS with Jex - see
invalid reference
io.avaje.jex.ssl.StaticContent
.

 var sslPlugin =
     SslPlugin.create(
         config ->
             config.keystoreFromClasspath("path", "password"));

 Jex.create()
  .plugin(sslPlugin)
  .port(8080)
  .start();