12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- $CONFIG = [
- 'appstoreenabled' => false,
- 'apps_paths' => [
- [
- 'path' => OC::$SERVERROOT . '/apps',
- 'url' => '/apps',
- 'writable' => true,
- ],
- ],
- ];
- if (is_dir(OC::$SERVERROOT.'/apps2')) {
- $CONFIG['apps_paths'][] = [
- 'path' => OC::$SERVERROOT . '/apps2',
- 'url' => '/apps2',
- 'writable' => false,
- ];
- }
- if (substr(strtolower(PHP_OS), 0, 3) === 'win') {
- $CONFIG['openssl'] = ['config' => OC::$SERVERROOT . '/tests/data/openssl.cnf'];
- }
- if (getenv('OBJECT_STORE') === 's3') {
- $CONFIG['objectstore'] = [
- 'class' => 'OC\\Files\\ObjectStore\\S3',
- 'arguments' => array(
- 'bucket' => 'nextcloud',
- 'autocreate' => true,
- 'key' => 'dummy',
- 'secret' => 'dummy',
- 'hostname' => 'localhost',
- 'port' => 4569,
- 'use_ssl' => false,
- // required for some non amazon s3 implementations
- 'use_path_style' => true
- )
- ];
- }
|