src/de/uhilger/minsrv/Server.java
@@ -85,7 +85,7 @@ logger.info("Server starting on port " + port); HttpServer server = HttpServer.create(new InetSocketAddress(port), 0); server.createContext(ctx + "/av", new FileHandler(App.getInitParameter(App.IP_WWW_DATA))); server.createContext(ctx + STR_SLASH, new FileHandler(App.getInitParameter(App.IP_WWW_DATA))); server.createContext(ctx + "/server/stop", new StopServerHandler()); server.setExecutor(Executors.newFixedThreadPool(20)); server.start();