diff options
author | Julius Härtl <jus@bitgrid.net> | 2021-05-28 19:24:21 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2021-07-01 08:22:24 +0200 |
commit | 55cabef7230e2a83903644727440c777fd923690 (patch) | |
tree | c546b6fb64eb84af2dc1d43acbebf25761e3cb85 /tests/preseed-config.php | |
parent | 3f44fd00e27eea3da6da2d4bf0d5e8cfa181f1b2 (diff) | |
download | nextcloud-server-55cabef7230e2a83903644727440c777fd923690.tar.gz nextcloud-server-55cabef7230e2a83903644727440c777fd923690.zip |
Use minio for s3 tests
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests/preseed-config.php')
-rw-r--r-- | tests/preseed-config.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/preseed-config.php b/tests/preseed-config.php index 97c8a1d11a8..16aea87c8a7 100644 --- a/tests/preseed-config.php +++ b/tests/preseed-config.php @@ -25,10 +25,10 @@ if (getenv('OBJECT_STORE') === 's3') { 'arguments' => [ 'bucket' => 'nextcloud', 'autocreate' => true, - 'key' => 'dummy', - 'secret' => 'dummy', - 'hostname' => getenv('DRONE') === 'true' ? 'fake-s3' : 'localhost', - 'port' => 4569, + 'key' => 'nextcloud', + 'secret' => 'nextcloud', + 'hostname' => getenv('DRONE') === 'true' ? 'minio' : 'localhost', + 'port' => 9000, 'use_ssl' => false, // required for some non amazon s3 implementations 'use_path_style' => true |