From e5c71b08508db22a9fae50c73ad82d9d0dcd2550 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 1 Oct 2017 16:13:38 +0200 Subject: Initial launch! --- Rocket.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Rocket.toml (limited to 'Rocket.toml') diff --git a/Rocket.toml b/Rocket.toml new file mode 100644 index 0000000..3c50ddd --- /dev/null +++ b/Rocket.toml @@ -0,0 +1,23 @@ +[development] +address = "0.0.0.0" +port = 8000 +#workers = [number of cpus * 2] +log = "normal" +#secret_key = [randomly generated at launch] +limits = { forms = 32768 } + +[staging] +address = "0.0.0.0" +port = 80 +#workers = [number of cpus * 2] +log = "normal" +#secret_key = [randomly generated at launch] +limits = { forms = 32768 } + +[production] +address = "0.0.0.0" +port = 80 +#workers = [number of cpus * 2] +log = "critical" +#secret_key = [randomly generated at launch] +limits = { forms = 32768 } -- cgit v1.2.3