mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
c1555fc33e
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
88 lines
2.5 KiB
PHP
88 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2012-2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
// in case there are private configurations in the users home -> use them
|
|
$privateConfigFile = $_SERVER['HOME'] . '/owncloud-extfs-test-config.php';
|
|
if (file_exists($privateConfigFile)) {
|
|
$config = include($privateConfigFile);
|
|
return $config;
|
|
}
|
|
|
|
// this is now more a template now for your private configurations
|
|
return [
|
|
'ftp' => [
|
|
'run' => false,
|
|
'host' => 'localhost',
|
|
'user' => 'test',
|
|
'password' => 'test',
|
|
'root' => '/test',
|
|
],
|
|
'webdav' => [
|
|
'run' => false,
|
|
'host' => 'localhost',
|
|
'user' => 'test',
|
|
'password' => 'test',
|
|
'root' => '',
|
|
// wait delay in seconds after write operations
|
|
// (only in tests)
|
|
// set to higher value for lighttpd webdav
|
|
'wait' => 0
|
|
],
|
|
'owncloud' => [
|
|
'run' => false,
|
|
'host' => 'localhost/owncloud',
|
|
'user' => 'test',
|
|
'password' => 'test',
|
|
'root' => '',
|
|
],
|
|
'swift' => [
|
|
'run' => false,
|
|
'user' => 'test',
|
|
'bucket' => 'test',
|
|
'region' => 'DFW',
|
|
'key' => 'test', //to be used only with Rackspace Cloud Files
|
|
//'tenant' => 'test', //to be used only with OpenStack Object Storage
|
|
//'password' => 'test', //to be use only with OpenStack Object Storage
|
|
//'service_name' => 'swift', //should be 'swift' for OpenStack Object Storage and 'cloudFiles' for Rackspace Cloud Files (default value)
|
|
//'url' => 'https://identity.api.rackspacecloud.com/v2.0/', //to be used with Rackspace Cloud Files and OpenStack Object Storage
|
|
//'timeout' => 5 // timeout of HTTP requests in seconds
|
|
],
|
|
'smb' => [
|
|
'run' => false,
|
|
'user' => 'test',
|
|
'password' => 'test',
|
|
'host' => 'localhost',
|
|
'share' => '/test',
|
|
'root' => '/test/',
|
|
],
|
|
'amazons3' => [
|
|
'run' => false,
|
|
'key' => 'test',
|
|
'secret' => 'test',
|
|
'bucket' => 'bucket'
|
|
//'hostname' => 'your.host.name',
|
|
//'port' => '443',
|
|
//'use_ssl' => 'true',
|
|
//'region' => 'eu-west-1',
|
|
//'test'=>'true',
|
|
//'timeout'=>20
|
|
],
|
|
'sftp' => [
|
|
'run' => false,
|
|
'host' => 'localhost',
|
|
'user' => 'test',
|
|
'password' => 'test',
|
|
'root' => '/test'
|
|
],
|
|
'sftp_key' => [
|
|
'run' => false,
|
|
'host' => 'localhost',
|
|
'user' => 'test',
|
|
'public_key' => 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDJPTvz3OLonF2KSGEKP/nd4CPmRYvemG2T4rIiNYjDj0U5y+2sKEWbjiUlQl2bsqYuVoJ+/UNJlGQbbZ08kQirFeo1GoWBzqioaTjUJfbLN6TzVVKXxR9YIVmH7Ajg2iEeGCndGgbmnPfj+kF9TR9IH8vMVvtubQwf7uEwB0ALhw== phpseclib-generated-key',
|
|
'private_key' => 'test',
|
|
'root' => '/test'
|
|
],
|
|
];
|