Increase maximum message length to 8K

main
Bob Mottram 2019-11-29 09:40:10 +00:00
parent 7851ccf960
commit 582649c720
1 changed files with 1 additions and 1 deletions

View File

@ -5429,7 +5429,7 @@ def runDaemon(mediaInstance: bool,maxRecentPosts: int, \
# max POST size of 30M # max POST size of 30M
httpd.maxPostLength=1024*1024*30 httpd.maxPostLength=1024*1024*30
httpd.maxMediaSize=httpd.maxPostLength httpd.maxMediaSize=httpd.maxPostLength
httpd.maxMessageLength=5000 httpd.maxMessageLength=8000
httpd.maxPostsInBox=32000 httpd.maxPostsInBox=32000
httpd.domain=domain httpd.domain=domain
httpd.port=port httpd.port=port