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: 9791e713dacbf88ebad247807c2245e1b18d97e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
$CONFIG = array (
  "appstoreenabled" => false,
  'apps_paths' =>
  array (
    0 =>
    array (
      'path' => OC::$SERVERROOT.'/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 =>
    array (
      'path' => OC::$SERVERROOT.'/apps2',
      'url' => '/apps2',
      'writable' => false,
    )
    ),
);