From 582649c720cc879e7ca0350ec9e2589cf39bc69f Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 29 Nov 2019 09:40:10 +0000 Subject: [PATCH] Increase maximum message length to 8K --- daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index f4536eb3b..19ede1aac 100644 --- a/daemon.py +++ b/daemon.py @@ -5429,7 +5429,7 @@ def runDaemon(mediaInstance: bool,maxRecentPosts: int, \ # max POST size of 30M httpd.maxPostLength=1024*1024*30 httpd.maxMediaSize=httpd.maxPostLength - httpd.maxMessageLength=5000 + httpd.maxMessageLength=8000 httpd.maxPostsInBox=32000 httpd.domain=domain httpd.port=port