doc: Add undocumented storage_class to example (#32)

This commit is contained in:
Kevin Kuehler 2020-03-12 11:35:31 -07:00 committed by GitHub
parent 17a65cf4f7
commit a38b15b2a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,8 +28,12 @@ media_storage_providers:
access_key_id: <S3_ACCESS_KEY_ID>
secret_access_key: <S3_SECRET_ACCESS_KEY>
# also optional. The maximum number of concurrent threads which will be used
# to connect to S3. Each thread manages a single connection. Default is 40.
# The object storage class used when uploading files to the bucket.
# Default is STANDARD.
#storage_class: "STANDARD_IA"
# The maximum number of concurrent threads which will be used to connect
# to S3. Each thread manages a single connection. Default is 40.
#
#threadpool_size: 20
```