owncloud / core

:cloud: ownCloud web server core (Files, DAV, etc.)
https://owncloud.com
GNU Affero General Public License v3.0
8.36k stars 2.06k forks source link

Old app store in config.sample.php #30397

Closed cdamken closed 6 years ago

cdamken commented 6 years ago

There are many commands in the config.sample.php that does not exist.

one of this is the old apps store

/**
 * Apps
 *
 * Options for the Apps folder, Apps store, and App code checker.
 */

/**
 * The URL of the appstore to use.
 */
'appstoreurl' => 'https://api.owncloud.com/v1',

/**
 * Whether to show experimental apps in the appstore interface
 *
 * Experimental apps are not checked for security issues and are new or known
 * to be unstable and under heavy development. Installing these can cause data
 * loss or security breaches.
 */
'appstore.experimental.enabled' => false,

/**
 * 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
 * file system path to the app folder. The key ``url`` defines the HTTP Web path
 * to that folder, starting from the ownCloud webroot. The key ``writable``
 * indicates if a Web server can write files to that folder.
 */
 'apps_paths' =>
   array (
     array (
       'path' => OC::$SERVERROOT.'/apps',
       'url' => '/apps',
       'writable' => true,
     )
   ),

IMO we should update the file

DeepDiver1975 commented 6 years ago

7cbf672f861b7bb9d60d62f388bf69c37ee07bfbe1c4df2c500f8968ff3a2e2f

cdamken commented 6 years ago

I created this pull request: https://github.com/owncloud/core/pull/30400

lock[bot] commented 5 years ago

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.