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
log = "normal"
secret_key = "JR7bWcbwRfF/+Kc3jKfgxPiuLFyUxMRgTyJlcruItA0="
limits = { forms = 32768 }
limits = { forms = 524288 }
[production]
address = "0.0.0.0"
log = "critical"
port = 8000
limits = { forms = 32768 }
limits = { forms = 524288 }