mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-12-22 11:21:24 +00:00
Add new config options to pict-rs.toml
This commit is contained in:
parent
691bca286c
commit
6c203fc032
1 changed files with 16 additions and 0 deletions
16
pict-rs.toml
16
pict-rs.toml
|
@ -334,6 +334,22 @@ secret_key = 'SECRET_KEY'
|
|||
# default: empty
|
||||
session_token = 'SESSION_TOKEN'
|
||||
|
||||
## Optional: set how long object storage signatures are valid for (in seconds)
|
||||
# environment variable: PICTRS__STORE__SIGNATURE_EXPIRATION
|
||||
# default: 15
|
||||
#
|
||||
# This can be useful if your object storage might take a while to process requests. It should not be
|
||||
# increased more than needed to prevent replay attacks.
|
||||
signature_expiration = 15
|
||||
|
||||
## Optional: set how long pict-rs will wait (in seconds) for a response from object storage
|
||||
# environment variable: PICTRS__STORE__CLIENT_TIMEOUT
|
||||
# default: 30
|
||||
#
|
||||
# This value is the total wait time, and not additional wait time on top of the
|
||||
# signature_expiration.
|
||||
client_timeout = 30
|
||||
|
||||
## Filesystem media storage example
|
||||
# ## Media storage configuration
|
||||
# [store]
|
||||
|
|
Loading…
Reference in a new issue