diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-06-24 09:02:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-24 09:02:40 +0200 |
commit | 50b1568d48efddc315e503c6a2c3ffe485db7658 (patch) | |
tree | 6214e8520023cc64dd99ac71ab2d6f7232541e8a | |
parent | 54c716ec8fb5e8774384fb2a023ea1a74116c09e (diff) | |
parent | 7953a2fa20790df107c7579db3f70721dd1fada7 (diff) | |
download | nextcloud-server-50b1568d48efddc315e503c6a2c3ffe485db7658.tar.gz nextcloud-server-50b1568d48efddc315e503c6a2c3ffe485db7658.zip |
Merge pull request #21548 from nextcloud/bug/21519/add-appstoreurl-to-config
Add appstoreurl to config.sample.php.
-rw-r--r-- | config/config.sample.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 5a2caaf979f..e95f2535af8 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -914,6 +914,14 @@ $CONFIG = [ 'appstoreenabled' => true, /** + * Enables the installation of apps from a self hosted apps store. + * Requires that at least one of the configured apps directories is writeable. + * + * Defaults to ``https://apps.nextcloud.com/api/v1`` + */ +'appstoreurl' => 'https://apps.nextcloud.com/api/v1', + +/** * Use the ``apps_paths`` parameter to set the location of the Apps directory, * which should be scanned for available apps, and where user-specific apps * should be installed from the Apps store. The ``path`` defines the absolute |