github.com/alibaba/sealer@v0.8.6-0.20220430115802-37a2bdaa8173/applications/nydus/nydusdfile/serverfile/Rocket.toml (about) 1 # Except for the secret key, none of these are actually needed; Rocket has sane 2 # defaults. We show all of them here explicitly for demonstrative purposes. 3 4 [default.limits] 5 forms = "64 kB" 6 json = "1 MiB" 7 msgpack = "2 MiB" 8 "file/jpg" = "5 MiB" 9 10 [default] 11 extra = false 12 ident = "Rocket" 13 14 [debug] 15 address = "127.0.0.1" 16 port = 8000 17 workers = 10 18 keep_alive = 1 19 log_level = "normal" 20 21 [release] 22 address = "0.0.0.0" 23 port = 8000 24 workers = 12 25 keep_alive = 5 26 log_level = "critical"