no, been there and tried that. you can only use AWS S3 by:
- install nextcloud
- go to setup page but don’t enter anything (even admin user email)
- edit config/config.php to put the S3 details in
array (
'class' => 'OC\\Files\\ObjectStore\\S3',
'arguments' =>
array (
'bucket' => '<BUCKET NAME>',
'autocreate' => true,
'key' => '<KEY>',
'region' => '<REGION - IF REQUIRED>',
'secret' => '<SECRET>',
'use_ssl' => true,
'use_path_style' => false,
),
- now refresh the setup page and go from there.