mirror of https://github.com/rwf2/Rocket.git
22 lines
541 B
TOML
22 lines
541 B
TOML
# None of these are actually needed as Rocket has sane defaults for each. We
|
|
# show all of them here explicitly for demonstrative purposes.
|
|
|
|
[development]
|
|
address = "localhost"
|
|
port = 8000
|
|
log = "normal"
|
|
|
|
[staging]
|
|
address = "0.0.0.0"
|
|
port = 80
|
|
log = "normal"
|
|
# don't use this key! generate your own and keep it private!
|
|
session_key = "VheMwXIBygSmOlZAhuWl2B+zgvTN3WW5"
|
|
|
|
[production]
|
|
address = "0.0.0.0"
|
|
port = 80
|
|
log = "critical"
|
|
# don't use this key! generate your own and keep it private!
|
|
session_key = "adL5fFIPmZBrlyHk2YT4NLV3YCk2gFXz"
|