mirror of
				https://github.com/nextcloud/server.git
				synced 2025-11-04 00:40:26 +01:00 
			
		
		
		
	
					1 
					How to test S3 primary storage
					
				
						
						Olivier Paroz edited this page 2017-05-19 10:25:18 +02:00 
					
				Install https://github.com/jubos/fake-s3 and start it:
sudo gem install fakes3
mkdir /tmp/s3
fakes3 -r /tmp/s3 -p 4567
In there now a subfolder per bucket is created and every object is stored inside a folder in there.
Configure Nextcloud:
'objectstore_multibucket' => [
	'class' => 'OC\\Files\\ObjectStore\\S3',
	'arguments' => [
		'bucket' => 'abc',
		'num_buckets' => 64,
		'key' => '123',
		'secret' => 'abc',
		'hostname' => 'localhost',
		'port' => '4567',
		'use_ssl' => false,
		'use_path_style' => 'true',
	],
],
OR
'objectstore' => [
	'class' => 'OC\\Files\\ObjectStore\\S3',
	'arguments' => [
		'bucket' => 'abc',
		'key' => '123',
		'secret' => 'abc',
		'hostname' => 'localhost',
		'port' => '4567',
		'use_ssl' => false,
		'use_path_style' => 'true',
	],
],