OwnCloud Config: Difference between revisions

From Lolly's Wiki
Jump to navigationJump to search
No edit summary
m (Text replacement - "[[Kategorie:" to "[[Category:")
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Kategorie:OwnCloud]]
[[Category:OwnCloud]]




==Seperate self installed apps from bundled apps==
==Seperate self installed apps from bundled apps==
In your config add:
In your config add:
<source lang=php>
<syntaxhighlight lang=php>
   'apps_paths' =>  
   'apps_paths' => array (
  array (
     0 => array (
     0 =>  
    array (
       'path' => OC::$SERVERROOT.'/apps',
       'path' => OC::$SERVERROOT.'/apps',
       'url' => '/apps',
       'url' => '/apps',
       'writable' => false,
       'writable' => false,
     ),
     ),
     1 =>  
     1 => array (
    array (
       'path' => OC::$SERVERROOT.'/other_apps',
       'path' => OC::$SERVERROOT.'/other_apps',
       'url' => '/other_apps',
       'url' => '/other_apps',
Line 20: Line 17:
     ),
     ),
   ),
   ),
</source>
</syntaxhighlight>

Latest revision as of 16:34, 25 November 2021


Seperate self installed apps from bundled apps

In your config add:

  '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,
    ),
  ),