forked from indymedia/epicyon
Allow blog length posts
parent
9ddb607cd1
commit
052023c7c0
|
@ -5629,7 +5629,9 @@ 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=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.maxPostsInBox=32000
|
||||||
httpd.domain=domain
|
httpd.domain=domain
|
||||||
httpd.port=port
|
httpd.port=port
|
||||||
|
|
Loading…
Reference in New Issue