diff --git a/Rocket.toml b/Rocket.toml new file mode 100644 index 0000000..e9368db --- /dev/null +++ b/Rocket.toml @@ -0,0 +1,20 @@ +[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 }