aboutsummaryrefslogtreecommitdiffstats
path: root/Rocket.toml
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2017-10-01 16:13:38 +0200
committerHarald Eilertsen <haraldei@anduin.net>2017-10-01 16:13:38 +0200
commite5c71b08508db22a9fae50c73ad82d9d0dcd2550 (patch)
tree57773f96e79bb5b9fa61eb1f6bc0507ae285446c /Rocket.toml
downloadrocket-blog-e5c71b08508db22a9fae50c73ad82d9d0dcd2550.tar.gz
rocket-blog-e5c71b08508db22a9fae50c73ad82d9d0dcd2550.tar.bz2
rocket-blog-e5c71b08508db22a9fae50c73ad82d9d0dcd2550.zip
Initial launch!
Diffstat (limited to 'Rocket.toml')
-rw-r--r--Rocket.toml23
1 files changed, 23 insertions, 0 deletions
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 }