From 56978c5c4003331bbfdf2a16f0473b2eab648fb6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 21 Dec 2017 11:57:56 +0100 Subject: [PATCH] document 'legacy_auth' option for s3 --- .../configuration_files/external_storage/amazons3.rst | 3 +++ admin_manual/configuration_files/primary_storage.rst | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/admin_manual/configuration_files/external_storage/amazons3.rst b/admin_manual/configuration_files/external_storage/amazons3.rst index 987d2ab60..c9e5d0a21 100644 --- a/admin_manual/configuration_files/external_storage/amazons3.rst +++ b/admin_manual/configuration_files/external_storage/amazons3.rst @@ -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. diff --git a/admin_manual/configuration_files/primary_storage.rst b/admin_manual/configuration_files/primary_storage.rst index ae73a322b..6035135a0 100644 --- a/admin_manual/configuration_files/primary_storage.rst +++ b/admin_manual/configuration_files/primary_storage.rst @@ -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 ---------------------------