From 27c54cdd9eb40acae42c7ccbfd45ca139c3f4236 Mon Sep 17 00:00:00 2001 From: Pierre Ozoux Date: Sat, 29 Aug 2020 09:26:57 +0200 Subject: Adds ability to configure S3 object stores via environment variables (#1227) * Adds ability to configure S3 object stores via environment variables closes #1193 #1124 #1134 Co-authored-by: Adam Jenkins Co-authored-by: Stephen Cuppett * Update .config/s3.config.php Co-authored-by: Adam Jenkins Co-authored-by: Stephen Cuppett --- .config/s3.config.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .config/s3.config.php (limited to '.config') diff --git a/.config/s3.config.php b/.config/s3.config.php new file mode 100644 index 00000000..6376d8f6 --- /dev/null +++ b/.config/s3.config.php @@ -0,0 +1,21 @@ + array( + 'class' => '\OC\Files\ObjectStore\S3', + 'arguments' => array( + 'bucket' => getenv('OBJECTSTORE_S3_BUCKET'), + 'key' => getenv('OBJECTSTORE_S3_KEY') ?: '', + 'secret' => getenv('OBJECTSTORE_S3_SECRET') ?: '', + 'region' => getenv('OBJECTSTORE_S3_REGION') ?: '', + 'hostname' => getenv('OBJECTSTORE_S3_HOST') ?: '', + 'port' => getenv('OBJECTSTORE_S3_PORT') ?: '', + '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' + ) + ) + ); +} -- cgit v1.2.3