feat: change default minio config to support pre-signed urls
Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
This commit is contained in:
+2
-1
@@ -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
|
||||
|
||||
@@ -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,
|
||||
),
|
||||
),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user