* @throws BindException if the server cannot bind to the requested address,
* or if the server is already bound.
* @throws IOException
*/
public static HttpsServer create(InetSocketAddress addr, int backlog, Map<String, String> configuration) throws IOException {
HttpServerProvider provider = HttpServerProvider.provider();
return provider.createHttpsServer(addr, backlog, configuration);
}