@Singleton
Server provideJettyServer(SocketConnector connector, SslSocketConnector sslConnector,
@MaxFormContentSize Integer maxFormContentSize, ServletHolder servletHolder) {
Server server = new Server();
server.setGracefulShutdown(1);
server.addConnector(connector);
server.addConnector(sslConnector);
server.setSessionIdManager(new HashSessionIdManager(new Random()));
Context context = new Context(server, "/", Context.SESSIONS);
context.setMaxFormContentSize(maxFormContentSize);