mirror of
https://github.com/janeczku/calibre-web
synced 2025-11-06 10:13:02 +00:00
Increased upload limit to 200MB (#452)
This commit is contained in:
3
cps.py
3
cps.py
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user