1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

style(s3m): Correct indentation

This commit is contained in:
provokateurin 2025-12-01 11:42:11 +01:00
commit 643fafd028
No known key found for this signature in database

View file

@ -1,47 +1,47 @@
'objectstore' => [ 'objectstore' => [
'default' => 'multi', 'default' => 'multi',
'multi' => [ 'multi' => [
'class' => 'OC\Files\ObjectStore\S3', 'class' => 'OC\Files\ObjectStore\S3',
'arguments' => [ 'arguments' => [
'multibucket' => true, 'multibucket' => true,
'num_buckets' => 8, 'num_buckets' => 8,
'bucket' => 'nextcloud-multi-', 'bucket' => 'nextcloud-multi-',
'autocreate' => true, 'autocreate' => true,
'key' => 'minio', 'key' => 'minio',
'secret' => 'minio123', 'secret' => 'minio123',
'hostname' => 's3', 'hostname' => 's3',
'port' => 9000, 'port' => 9000,
'use_ssl' => false, 'use_ssl' => false,
'use_path_style' => true, 'use_path_style' => true,
'uploadPartSize' => 52428800, 'uploadPartSize' => 52428800,
], ],
],
'single' => [
'class' => 'OC\Files\ObjectStore\S3',
'arguments' => [
'bucket' => 'nextcloud-single',
'autocreate' => true,
'key' => 'minio',
'secret' => 'minio123',
'hostname' => 's3',
'port' => 9000,
'use_ssl' => false,
'use_path_style' => true,
'uploadPartSize' => 52428800,
],
],
'root' => [
'class' => 'OC\Files\ObjectStore\S3',
'arguments' => [
'bucket' => 'nextcloud-root',
'autocreate' => true,
'key' => 'minio',
'secret' => 'minio123',
'hostname' => 's3',
'port' => 9000,
'use_ssl' => false,
'use_path_style' => true,
'uploadPartSize' => 52428800,
],
],
], ],
'single' => [
'class' => 'OC\Files\ObjectStore\S3',
'arguments' => [
'bucket' => 'nextcloud-single',
'autocreate' => true,
'key' => 'minio',
'secret' => 'minio123',
'hostname' => 's3',
'port' => 9000,
'use_ssl' => false,
'use_path_style' => true,
'uploadPartSize' => 52428800,
],
],
'root' => [
'class' => 'OC\Files\ObjectStore\S3',
'arguments' => [
'bucket' => 'nextcloud-root',
'autocreate' => true,
'key' => 'minio',
'secret' => 'minio123',
'hostname' => 's3',
'port' => 9000,
'use_ssl' => false,
'use_path_style' => true,
'uploadPartSize' => 52428800,
],
],
],