feat: change default minio config to support pre-signed urls

Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
This commit is contained in:
Carl Schwan
2025-11-10 15:38:11 +01:00
parent fade46fd51
commit 824fd6a24f
2 changed files with 11 additions and 6 deletions
+2 -1
View File
@@ -43,6 +43,7 @@ services:
- stable32${DOMAIN_SUFFIX}
- mail${DOMAIN_SUFFIX}
- sso${DOMAIN_SUFFIX}
- minio${DOMAIN_SUFFIX}
- imap${DOMAIN_SUFFIX}
- collabora${DOMAIN_SUFFIX}
- codedev${DOMAIN_SUFFIX}
@@ -791,7 +792,7 @@ services:
- "${IP_BIND:-127.0.0.1}:${PORTBASE:-800}8:80"
saml:
image: unicon/simplesamlphp
image: unicon/simplesamlphp
volumes:
- ./docker/configs/var-simplesamlphp/config:/var/simplesamlphp/config
- ./docker/configs/var-simplesamlphp/cert:/var/simplesamlphp/cert
+9 -5
View File
@@ -20,10 +20,12 @@ if ($primary === 'minio') {
'bucket' => 'nc-' . $hostname,
'key' => 'nextcloud',
'secret' => 'nextcloud',
'hostname' => 'minio',
'port' => '9000',
'hostname' => 'minio.local',
'port' => '80',
'proxy' => 'minio:9000',
'use_ssl' => false,
'use_path_style' => true,
'use_presigned_url' => true,
'autocreate' => true,
'verify_bucket_exists' => true,
),
@@ -42,11 +44,13 @@ if ($primary === 'minio-multibucket') {
'bucket' => 'nc-' . $hostname,
'key' => 'nextcloud',
'secret' => 'nextcloud',
'hostname' => 'minio',
'port' => '9000',
'hostname' => 'minio.local',
'port' => '80',
'proxy' => 'minio:9000',
'use_presigned_url' => true,
'use_ssl' => false,
'use_path_style' => true,
),
),
];
}
}