-
Feature
-
Resolution: Obsolete
-
Major
-
None
-
-
Todo
The Apiman project which also relies on Vert.x technology supports TLS/SSL as such
HttpServerOptions sslOptions = new HttpServerOptions() .setHost(apimanConfig.getHostname()) .setSsl(true) .setKeyStoreOptions( new JksOptions() .setPath(apimanConfig.getKeyStore()) .setPassword(apimanConfig.getKeyStorePassword()) ) .setTrustStoreOptions( new JksOptions() .setPath(apimanConfig.getTrustStore()) .setPassword(apimanConfig.getTrustStorePassword()) ); vertx.createHttpServer(sslOptions) .requestHandler(this::requestHandler) .listen(apimanConfig.getPort(VERTICLE_TYPE));
We should consider to implement the SSL/TLS feature like also to migrate to Vert.x 3.x
- is related to
-
ENTESB-4660 GATEWAY-HTTP profile should have a support for https endpoint.
-
- Closed
-