CS-Coursework/Rocket.toml

32 lines
662 B
TOML
Raw Normal View History

[default]
2022-11-11 13:04:13 +00:00
address = "192.168.0.109"
port = 10713
workers = 4
max_blocking = 512
keep_alive = 5
ident = "Rocket"
2023-02-10 11:02:15 +00:00
log_level = "normal"
temp_dir = "/tmp"
cli_colors = true
## NOTE: Don't (!) use this key! Generate your own!
2023-02-10 11:02:15 +00:00
secret_key = "n@Rz%H4ORaf2u*H@yWtoSwRC0qf%t&yjRhmb30A7Y4IEWGMl50"
[global.tls]
certs = "/etc/letsencrypt/live/arlofilley.com/fullchain.pem"
key = "/etc/letsencrypt/live/arlofilley.com/privkey.pem"
[default.limits]
form = "64 kB"
json = "1 MiB"
msgpack = "2 MiB"
"file/jpg" = "5 MiB"
# [default.tls]
# certs = "path/to/cert-chain.pem"
# key = "path/to/key.pem"
[default.shutdown]
ctrlc = true
signals = ["term", "hup"]
grace = 5
mercy = 5