aboutsummaryrefslogtreecommitdiffstats
path: root/Rocket.toml
blob: 3c50ddd7516ec72acac56f3b11b6d762ce03fa54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 }