return this.setupSsl(keyStore, pass, pass);
}
@Override
public NettyWebServer setupSsl(InputStream keyStore, String storePass, String keyPass) throws WebbitException {
this.sslContext = new SslFactory(keyStore, storePass).getServerContext(keyPass);
return this;
}