mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
increased max upload size to 5 Mb for svg and config upload
This commit is contained in:
parent
6e3dc392b6
commit
e1c1432f14
1 changed files with 2 additions and 1 deletions
|
@ -91,7 +91,8 @@ class CraftBeerPi:
|
||||||
policy = auth.SessionTktAuthentication(urandom(32), 60, include_ip=True)
|
policy = auth.SessionTktAuthentication(urandom(32), 60, include_ip=True)
|
||||||
middlewares = [web.normalize_path_middleware(), session_middleware(EncryptedCookieStorage(urandom(32))),
|
middlewares = [web.normalize_path_middleware(), session_middleware(EncryptedCookieStorage(urandom(32))),
|
||||||
auth.auth_middleware(policy), error_middleware]
|
auth.auth_middleware(policy), error_middleware]
|
||||||
self.app = web.Application(middlewares=middlewares)
|
# max upload size increased to 5 Mb. Default is 1 Mb -> config and svg upload
|
||||||
|
self.app = web.Application(middlewares=middlewares, client_max_size=5*1024*1024)
|
||||||
self.app["cbpi"] = self
|
self.app["cbpi"] = self
|
||||||
|
|
||||||
self._setup_shutdownhook()
|
self._setup_shutdownhook()
|
||||||
|
|
Loading…
Reference in a new issue