From 43157f2cdeb843b0d215b8ce2580710f5ef4f3da Mon Sep 17 00:00:00 2001 From: Philipp Date: Fri, 26 Mar 2021 23:54:51 +0100 Subject: [PATCH] Update .config/s3.config.php Co-authored-by: J0WI --- .config/s3.config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/s3.config.php b/.config/s3.config.php index 85e54b7b..aa3f4f59 100644 --- a/.config/s3.config.php +++ b/.config/s3.config.php @@ -18,7 +18,7 @@ if (getenv('OBJECTSTORE_S3_BUCKET')) { 'autocreate' => (strtolower($autocreate) === 'false' || $autocreate == false) ? false : true, 'use_ssl' => (strtolower($use_ssl) === 'false' || $use_ssl == false) ? false : true, // required for some non Amazon S3 implementations - 'use_path_style' => $use_path == true && strtolower($use_path) !== 'false', + 'use_path_style' => $use_path == true && strtolower($use_path) !== 'false', // required for older protocol versions 'legacy_auth' => $use_legacyauth == true && strtolower($use_legacyauth) !== 'false' )