OwnCloud Config: Difference between revisions
From Lolly's Wiki
Jump to navigationJump to search
No edit summary |
m (Text replacement - "<source" to "<syntaxhighlight") |
||
Line 4: | Line 4: | ||
==Seperate self installed apps from bundled apps== | ==Seperate self installed apps from bundled apps== | ||
In your config add: | In your config add: | ||
< | <syntaxhighlight lang=php> | ||
'apps_paths' => array ( | 'apps_paths' => array ( | ||
0 => array ( | 0 => array ( |
Revision as of 15:24, 25 November 2021
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>