fixed: set form size limited as 512kb

This commit is contained in:
Kilerd Chan 2018-10-24 22:46:33 +08:00
parent 64cf647f4a
commit a9a8ee5522

View File

@ -7,10 +7,10 @@ port = 8000
workers = 1 workers = 1
log = "normal" log = "normal"
secret_key = "JR7bWcbwRfF/+Kc3jKfgxPiuLFyUxMRgTyJlcruItA0=" secret_key = "JR7bWcbwRfF/+Kc3jKfgxPiuLFyUxMRgTyJlcruItA0="
limits = { forms = 32768 } limits = { forms = 524288 }
[production] [production]
address = "0.0.0.0" address = "0.0.0.0"
log = "critical" log = "critical"
port = 8000 port = 8000
limits = { forms = 32768 } limits = { forms = 524288 }