document 'legacy_auth' option for s3

This commit is contained in:
Robin Appelman
2017-12-21 11:57:56 +01:00
parent e1c5500a15
commit 56978c5c40
2 changed files with 8 additions and 1 deletions

View File

@@ -29,6 +29,9 @@ the DNS infrastructure cannot be controlled. Ordinarily, requests will be
made with ``http://bucket.hostname.domain/``, but with path style enabled,
requests are made with ``http://hostname.domain/bucket`` instead.
**Legacy authentication** is only required for S3 servers that only implement version 2 authentication,
on default version 4 authentication will be used.
See :doc:`../external_storage_configuration_gui` for additional mount
options and information.

View File

@@ -86,7 +86,8 @@ The S3 backend mounts a bucket on an Amazon S3 Storage or compatible server into
'use_ssl' => true,
'region' => 'optional',
// required for some non amazon s3 implementations
'use_path_style'=>true
'use_path_style' => true,
'legacy_auth' => false
),
),
@@ -100,6 +101,9 @@ but can be used with non-Amazon servers where the DNS infrastructure cannot be c
requests will be made with http://bucket.hostname.domain/, but with path style enabled,
requests are made with http://hostname.domain/bucket instead.
:code:`legacy_auth` is only required for S3 servers that only implement version 2 authentication,
on default version 4 authentication will be used.
Multibucket Object Store
---------------------------