modCluster.start();
// Create the proxy and mgmt handler
final HttpHandler proxy = modCluster.getProxyHandler();
final MCMPConfig config = MCMPConfig.webBuilder()
.setManagementHost(chost)
.setManagementPort(cport)
.enableAdvertise()
.getParent()
.build();
final HttpHandler mcmp = config.create(modCluster, proxy);
server = Undertow.builder()
.addHttpListener(cport, chost)
.addHttpListener(pport, phost)
.setHandler(mcmp)