summaryrefslogtreecommitdiff
path: root/Rocket.toml
blob: b9c583f24147b8a78bd8722d85028d2cc4fc91f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[debug]
address = "localhost"
port = 8000
#workers = [number of cpus * 2]
keep_alive = 5
log = "normal"
#secret_key = [randomly generated at launch]
limits = { forms = 32768 }

[staging]
address = "0.0.0.0"
port = 8008
#workers = [number of cpus * 2]
keep_alive = 5
log = "normal"
#secret_key = [randomly generated at launch]
limits = { forms = 32768 }

[release]
address = "127.0.0.1"
port = 8000
#workers = [number of cpus * 2]
keep_alive = 10
log = "normal"
#secret_key = [randomly generated at launch]
limits = { forms = 32768 }