Allow blog length posts

main
Bob Mottram 2020-02-24 11:50:50 +00:00
parent 9ddb607cd1
commit 052023c7c0
1 changed files with 3 additions and 1 deletions

View File

@ -5629,7 +5629,9 @@ def runDaemon(mediaInstance: bool,maxRecentPosts: int, \
# max POST size of 30M
httpd.maxPostLength=1024*1024*30
httpd.maxMediaSize=httpd.maxPostLength
httpd.maxMessageLength=8000
# Maximum text length is 32K - enough for a blog post
httpd.maxMessageLength=32000
# Maximum overall number of posts per box
httpd.maxPostsInBox=32000
httpd.domain=domain
httpd.port=port