}
boolean redirect = config.getBoolean("websearch.redirect");
if (redirect) {
String from = config.getString("websearch.redirect.from");
String to = config.getString("websearch.redirect.to");
httpServer.addHandler("/", new RedirectHandler(from,to));
}
try {httpServer.start();} catch (Exception e) {throw new RuntimeException(e);}
}
}