// If request targets a directory (i.e. request path ends with "/"),
// serve the index.html file located in that directory (the default behavior).
assets.index("index.html");
// Log all accesses to the server in apache common log format
server.add(new ApacheCommonLogger(logger))
.start(assets);
}