OwnCloud Config

From Lolly's Wiki
Revision as of 16:24, 25 November 2021 by Lollypop (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")
Jump to navigationJump to search

Kategorie:OwnCloud


Seperate self installed apps from bundled apps

In your config add: <syntaxhighlight lang=php>

 'apps_paths' => array (
   0 => array (
     'path' => OC::$SERVERROOT.'/apps',
     'url' => '/apps',
     'writable' => false,
   ),
   1 => array (
     'path' => OC::$SERVERROOT.'/other_apps',
     'url' => '/other_apps',
     'writable' => true,
   ),
 ),

</source>