mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-28 00:20:48 +00:00
increase upload limit for files to internal server
This commit is contained in:
parent
117b02cc67
commit
352dbbd2b6
1 changed files with 1 additions and 1 deletions
|
|
@ -1093,7 +1093,7 @@ class ReticulumMeshChat:
|
|||
print("failed to launch web browser")
|
||||
|
||||
# create and run web app
|
||||
app = web.Application(client_max_size=1024 * 1024 * 10) # allow uploading files up to 10mb
|
||||
app = web.Application(client_max_size=1024 * 1024 * 50) # allow uploading files up to 50mb
|
||||
app.add_routes(routes)
|
||||
app.add_routes([web.static('/', get_file_path("public/"))]) # serve anything in public folder
|
||||
app.on_shutdown.append(self.shutdown) # need to force close websockets and stop reticulum now
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue