-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstorage.config.php
17 lines (17 loc) · 970 Bytes
/
storage.config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
$CONFIG = array(
'objectstore' => array(
'class' => 'OC\\Files\\ObjectStore\\S3',
'arguments' => array(
'bucket' => '**bucket**', // your bucket name
'key' => '**key', // your key
'secret' => '**secret**', // your secret
'hostname' => '**host**', // your host
'port' => 443, // default
'use_ssl' => true, // default
'use_path_style' => false, //required to be true by some s3 providers
'sse_c_key' => '***sse-c key***', // only provide, if you want to use customer provided encryption key see, otherwise delete: https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/primary_storage.html#s3-sse-c-encryption-support
'region' => '***region***' // must be present, even if non-S3 storage is selected. Otherwise the script localtoS3 will fail
),
),
);