mirror of https://gitlab.com/bashrc2/epicyon
Increase max message length, for uploading actor
parent
c5b273512b
commit
fe912d3655
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue