mirror of
https://github.com/guilhermewerner/rust-api
synced 2025-06-15 22:45:50 +00:00
27 lines
419 B
TOML
27 lines
419 B
TOML
[development]
|
|
address = "localhost"
|
|
port = 5000
|
|
keep_alive = 5
|
|
read_timeout = 5
|
|
write_timeout = 5
|
|
log = "normal"
|
|
limits = { forms = 32768 }
|
|
|
|
[staging]
|
|
address = "localhost"
|
|
port = 5000
|
|
keep_alive = 5
|
|
read_timeout = 5
|
|
write_timeout = 5
|
|
log = "normal"
|
|
limits = { forms = 32768 }
|
|
|
|
[production]
|
|
address = "localhost"
|
|
port = 5000
|
|
keep_alive = 5
|
|
read_timeout = 5
|
|
write_timeout = 5
|
|
log = "critical"
|
|
limits = { forms = 32768 }
|