What am I missing?

This :
auto fsettings = new HTTPFileServerSettings;
fsettings.serverPathPrefix = "/static";
...
auto router = new URLRouter;
router.get("/index.html", &index);
router.get("/static/*", serveStaticFiles("public/"));