Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions config.sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,10 @@ download:
crypto:
# Path to the file containing the request secret.
# The secret is used to derive the key pair for encrypting and decrypting
# POST request bodies. The secret itself must be exactly 32 bytes, then
# base64-encoded.
# POST request bodies. The secret itself must be an x25519 private key,
# consisting of 32 random bytes, then base64-encoded.
# The secret can be generated with:
#
# openssl rand -base64 32 > ./path/to/request_secret
# Required.
request_secret_path: "./request_secret"
Loading