From af1bb033924d832966a39d15bd2c32797e815f2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Tue, 13 Feb 2018 13:18:42 +0100 Subject: [PATCH] doc: Document AwsS3 pass-thru options. --- website/src/docs/aws-s3.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/website/src/docs/aws-s3.md b/website/src/docs/aws-s3.md index c95024ad1..01075d189 100644 --- a/website/src/docs/aws-s3.md +++ b/website/src/docs/aws-s3.md @@ -43,6 +43,18 @@ When using a POST upload with a policy document, this should be the root URL of The `fields` field is an object with form fields to send along with the upload request. For presigned PUT uploads, this should be empty. +### `timeout: 30 * 1000` + +When no upload progress events have been received for this amount of milliseconds, assume the connection has an issue and abort the upload. This is passed through to [XHRUpload](/docs/xhrupload#timeout-30-1000); see its documentation page for details. +Set to `0` to disable this check. + +The default is 30 seconds. + +### `limit: 0` + +Limit the amount of uploads going on at the same time. This is passed through to [XHRUpload](/docs/xhrupload#limit-0); see its documentation page for details. +Set to `0` to disable limiting. + ## S3 Bucket configuration S3 buckets do not allow public uploads by default.