diff options
Diffstat (limited to 'Rocket.toml')
-rw-r--r-- | Rocket.toml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Rocket.toml b/Rocket.toml index 725664f..b9c583f 100644 --- a/Rocket.toml +++ b/Rocket.toml @@ -1,4 +1,4 @@ -[development] +[debug] address = "localhost" port = 8000 #workers = [number of cpus * 2] @@ -16,11 +16,11 @@ log = "normal" #secret_key = [randomly generated at launch] limits = { forms = 32768 } -[production] -address = "0.0.0.0" -port = 8085 +[release] +address = "127.0.0.1" +port = 8000 #workers = [number of cpus * 2] -keep_alive = 5 +keep_alive = 10 log = "normal" #secret_key = [randomly generated at launch] limits = { forms = 32768 } |