Welcome to mirror list, hosted at ThFree Co, Russian Federation.

preseed-config.php « tests - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f41573bf2954478b6d34bdb3ecc3750a3a7be53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$CONFIG = array (
	"appstoreenabled" => false,
	'apps_paths' =>
		array (
			0 =>
				array (
					'path' => OC::$SERVERROOT.'/apps',
					'url' => '/apps',
					'writable' => true,
				),
			1 =>
				array (
					'path' => OC::$SERVERROOT.'/apps2',
					'url' => '/apps2',
					'writable' => false,
				)
		),
);

if(substr(strtolower(PHP_OS), 0, 3) == "win") {
	$CONFIG['openssl'] = array( 'config' => OC::$SERVERROOT.'/tests/data/openssl.cnf');
}