* fix get request not accepted * use mutli-stage docker build to minimize final image Co-authored-by: Minghe <h.minghe@gmail.com>
24 lines
346 B
TOML
Vendored
24 lines
346 B
TOML
Vendored
[development]
|
|
address = "localhost"
|
|
port = 3000
|
|
workers = 8
|
|
keep_alive = 5
|
|
log = "normal"
|
|
limits = { forms = 32768 }
|
|
|
|
[staging]
|
|
address = "0.0.0.0"
|
|
port = 3000
|
|
workers = 8
|
|
keep_alive = 5
|
|
log = "normal"
|
|
limits = { forms = 32768 }
|
|
|
|
[production]
|
|
address = "0.0.0.0"
|
|
port = 3000
|
|
workers = 8
|
|
keep_alive = 5
|
|
log = "critical"
|
|
limits = { forms = 32768 }
|