storage.config.php 562 B

1234567891011121314151617
  1. <?php
  2. $CONFIG = array (
  3. 'objectstore' => array(
  4. 'class' => 'OC\\Files\\ObjectStore\\S3',
  5. 'arguments' => array(
  6. 'bucket' => 'nextcloud',
  7. 'autocreate' => true,
  8. 'key' => '********************',
  9. 'secret' => '*********************',
  10. 'hostname' => 'http://192.168.64.51',
  11. 'port' => 7480,
  12. 'use_ssl' => false,
  13. 'region' => 'eu-west-3',
  14. 'use_path_style' => true
  15. ),
  16. ),
  17. );