You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/admin_manual/pages/configuration/files/external_storage/s3_compatible_object_storage_as_primary.adoc
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,10 +82,18 @@ $CONFIG = [
82
82
'objectstore' => [
83
83
'class' => 'OCA\Files_Primary_S3\S3Storage',
84
84
'arguments' => [
85
+
//
85
86
// replace with your bucket
86
87
'bucket' => 'owncloud',
88
+
//
89
+
// uncomment to indicate available storage size in the objectstore, in bytes (in this example 1TB),
90
+
// without this setting app relying on available storage might be limited in funcionality e.g. metrics app
91
+
//'availableStorage' => 1099511627776,
92
+
//
87
93
// uncomment to enable server side encryption
88
94
//'serversideencryption' => 'AES256',
95
+
//
96
+
// storage specific options
89
97
'options' => [
90
98
// version and region are required
91
99
'version' => '2006-03-01',
@@ -114,10 +122,18 @@ $CONFIG = [
114
122
'objectstore' => [
115
123
'class' => 'OCA\Files_Primary_S3\S3Storage',
116
124
'arguments' => [
125
+
//
117
126
// replace with your bucket
118
127
'bucket' => 'owncloud',
128
+
//
129
+
// uncomment to indicate available storage size in the objectstore, in bytes (in this example 1TB),
130
+
// without this setting app relying on available storage might be limited in funcionality e.g. metrics app
131
+
//'availableStorage' => 1099511627776,
132
+
//
119
133
// uncomment to enable server side encryption
120
134
//'serversideencryption' => 'AES256',
135
+
//
136
+
// storage specific options
121
137
'options' => [
122
138
// version and region are required
123
139
'version' => '2006-03-01',
@@ -150,10 +166,18 @@ $CONFIG = [
150
166
'objectstore' => [
151
167
'class' => 'OCA\Files_Primary_S3\S3Storage',
152
168
'arguments' => [
169
+
//
153
170
// replace with your bucket
154
171
'bucket' => 'owncloud',
172
+
//
173
+
// uncomment to indicate available storage size in the objectstore, in bytes (in this example 1TB),
174
+
// without this setting app relying on available storage might be limited in funcionality e.g. metrics app
0 commit comments