Commit a8b3da24 authored by OzzieIsaacs's avatar OzzieIsaacs

Increased upload limit to 200MB (#452)

parent be3e1e48
......@@ -29,7 +29,8 @@ if __name__ == '__main__':
web.start_gevent()
else:
web.app.logger.info('Falling back to Tornado')
http_server = HTTPServer(WSGIContainer(web.app))
# Max Buffersize set to 200MB
http_server = HTTPServer(WSGIContainer(web.app),max_buffer_size = 209700000)
http_server.listen(web.ub.config.config_port)
IOLoop.instance().start()
IOLoop.instance().close(True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment