mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-03 02:09:45 +07:00
Update admin_manual/configuration_apps.rst
changed writable status and added hint to separate shipped and downloaded apps.
This commit is contained in:
@@ -27,17 +27,22 @@ for available apps and/or where user specific apps should be installed.The key
|
||||
``url`` defines the http web path to that folder, starting at the ownCloud
|
||||
web root. The key ``writable`` indicates if a user can install apps in that
|
||||
folder.
|
||||
|
||||
**Hint:**
|
||||
If you want to make sure that the default ``/apps`` folder only contains apps
|
||||
shipped with ownCloud, you should follow the example and set-up a ``/apps2``
|
||||
folder which will be used to store all apps downloaded by users.
|
||||
::
|
||||
"apps_paths" => array (
|
||||
0 => array (
|
||||
"path" => OC::$SERVERROOT."/apps",
|
||||
"url" => "/apps",
|
||||
"writable" => true,
|
||||
"writable" => false,
|
||||
),
|
||||
1 => array (
|
||||
"path" => OC::$SERVERROOT."/apps2",
|
||||
"url" => "/apps2",
|
||||
"writable" => false,
|
||||
"writable" => true,
|
||||
),
|
||||
),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user