2012-10-27 13:22:00 +04:00
|
|
|
<?php
|
|
|
|
$CONFIG = array (
|
|
|
|
"appstoreenabled" => false,
|
2012-11-05 01:16:04 +04:00
|
|
|
'apps_paths' =>
|
2012-10-27 13:22:00 +04:00
|
|
|
array (
|
2012-11-05 01:16:04 +04:00
|
|
|
0 =>
|
2012-10-27 13:22:00 +04:00
|
|
|
array (
|
2012-10-27 14:59:28 +04:00
|
|
|
'path' => OC::$SERVERROOT.'/apps',
|
2012-10-27 13:22:00 +04:00
|
|
|
'url' => '/apps',
|
|
|
|
'writable' => false,
|
|
|
|
),
|
2012-11-05 01:16:04 +04:00
|
|
|
1 =>
|
2012-10-27 13:22:00 +04:00
|
|
|
array (
|
2012-10-27 14:59:28 +04:00
|
|
|
'path' => OC::$SERVERROOT.'/apps2',
|
2012-10-27 13:22:00 +04:00
|
|
|
'url' => '/apps2',
|
|
|
|
'writable' => false,
|
|
|
|
)
|
|
|
|
),
|
2013-10-15 02:29:47 +04:00
|
|
|
|
2012-10-27 13:22:00 +04:00
|
|
|
);
|
2013-10-15 02:29:47 +04:00
|
|
|
|
|
|
|
if(substr(strtolower(PHP_OS), 0, 3) == "win") {
|
2013-10-15 02:44:55 +04:00
|
|
|
$CONFIG['openssl'] = array( 'config' => OC::$SERVERROOT.'/tests/data/openssl.cnf');
|
2013-10-15 02:29:47 +04:00
|
|
|
}
|