mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 17:14:08 +02:00
add s3 TLS option
This commit is contained in:
parent
b3a1e80f6f
commit
7e54fbd89f
8 changed files with 203 additions and 16 deletions
15
nix/image/configs/nc/s3s.php
Normal file
15
nix/image/configs/nc/s3s.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
'objectstore' => [
|
||||
'class' => 'OC\Files\ObjectStore\S3',
|
||||
'arguments' => [
|
||||
'bucket' => 'nextcloud',
|
||||
'autocreate' => true,
|
||||
'key' => 'minio',
|
||||
'secret' => 'minio123',
|
||||
'hostname' => 's3',
|
||||
'port' => 9000,
|
||||
'use_ssl' => true,
|
||||
'use_path_style' => true,
|
||||
'uploadPartSize' => 52428800,
|
||||
'use_nextcloud_bundle' => true,
|
||||
],
|
||||
],
|
||||
Loading…
Add table
Add a link
Reference in a new issue