Increase max message length, for uploading actor

main
Bob Mottram 2021-03-17 21:53:42 +00:00
parent c5b273512b
commit fe912d3655
1 changed files with 2 additions and 2 deletions

View File

@ -14546,8 +14546,8 @@ def runDaemon(brochMode: bool,
# 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
# Maximum text length is 32K - enough for a blog post # Maximum text length is 64K - enough for a blog post
httpd.maxMessageLength = 32000 httpd.maxMessageLength = 64000
# Maximum overall number of posts per box # Maximum overall number of posts per box
httpd.maxPostsInBox = 32000 httpd.maxPostsInBox = 32000
httpd.domain = domain httpd.domain = domain