From: Michael Tremer Date: Thu, 26 May 2022 09:58:52 +0000 (+0000) Subject: hub: Accept file uploads of up to 1GB X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3e73936166e9e6249885e835a5fdb2d013125c4;p=pbs.git hub: Accept file uploads of up to 1GB Signed-off-by: Michael Tremer --- diff --git a/src/scripts/pakfire-hub b/src/scripts/pakfire-hub index 05cd94a9..df12429f 100644 --- a/src/scripts/pakfire-hub +++ b/src/scripts/pakfire-hub @@ -13,7 +13,11 @@ def run(): # Initialise application app = pakfire.buildservice.hub.Application(debug=tornado.options.options.debug) - app.listen(tornado.options.options.port, xheaders=True) + app.listen( + tornado.options.options.port, + xheaders=True, + max_body_size=1073741824, + ) # Launch IOLoop tornado.ioloop.IOLoop.current().start()