summaryrefslogtreecommitdiffstats
path: root/.config/apps.config.php
blob: 4c37f72a933ff0b8d287c33ad1ade69656a21e72 (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,
      ),
  ),
);