katbin/Rocket.toml
ATechnoHazard 328b14f986
fairings: Failed experiment with templating
Signed-off-by: ATechnoHazard <amolele@gmail.com>
2020-06-28 15:31:18 +05:30

24 lines
360 B
TOML

[development]
address = "localhost"
port = 8000
keep_alive = 5
log = "normal"
limits = { forms = 32768 }
[staging]
address = "0.0.0.0"
port = 8000
keep_alive = 5
log = "normal"
limits = { forms = 32768 }
[production]
address = "0.0.0.0"
port = 8000
keep_alive = 5
log = "critical"
limits = { forms = 32768 }
#[global]
#template_dir = "resources/templates/"