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

apps.config.php « config « apache « 17.0-rc - github.com/nextcloud/docker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4bed8336e2a706a8e87d5f459b116802da8da3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
$CONFIG = array (
  "apps_paths" => array (
      0 => array (
              "path"     => OC::$SERVERROOT."/apps",
              "url"      => "/apps",
              "writable" => false,
      ),
      1 => array (
              "path"     => OC::$SERVERROOT."/custom_apps",
              "url"      => "/custom_apps",
              "writable" => true,
      ),
  ),
);