Blame view
sources/tests/preseed-config.php
470 Bytes
|
31b7f2792
|
1 2 |
<?php $CONFIG = array ( |
|
a293d369c
|
3 |
"appstoreenabled" => false, |
|
31b7f2792
|
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
'apps_paths' =>
array (
0 =>
array (
'path' => OC::$SERVERROOT.'/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => OC::$SERVERROOT.'/apps2',
'url' => '/apps2',
'writable' => false,
)
),
|
|
a293d369c
|
19 |
|
|
31b7f2792
|
20 |
); |
|
a293d369c
|
21 22 23 24 |
if(substr(strtolower(PHP_OS), 0, 3) == "win") {
$CONFIG['openssl'] = array( 'config' => OC::$SERVERROOT.'/tests/data/openssl.cnf');
}
|