From f533262a44c53a985a8472cb4860113fea7fd039 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 29 Mar 2018 03:35:43 +0200 Subject: [PATCH] generate documentation from config.sample.php --- .../config_sample_php_parameters.rst | 34 ++++++++++++++++--- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index c105888d2..ae371f351 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -92,17 +92,17 @@ during installation and update, so you shouldn't need to change it. :: - 'dbtype' => 'sqlite', + 'dbtype' => 'sqlite3', Identifies the database used with this installation. See also config option ``supportedDatabases`` Available: - - sqlite (SQLite3) + - sqlite3 (SQLite3) - mysql (MySQL/MariaDB) - pgsql (PostgreSQL) -Defaults to ``sqlite`` +Defaults to ``sqlite3`` :: @@ -910,6 +910,8 @@ Some of the Nextcloud code may be stored in alternate locations. 'https://play.google.com/store/apps/details?id=com.nextcloud.client', 'customclient_ios' => 'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8', + 'customclient_ios_appid' => + '1125420102', This section is for configuring the download links for Nextcloud clients, as seen in the first-run wizard and on Personal pages. @@ -917,7 +919,8 @@ seen in the first-run wizard and on Personal pages. Defaults to * Desktop client: ``https://nextcloud.com/install/#install-clients`` * Android client: ``https://play.google.com/store/apps/details?id=com.nextcloud.client`` -* iOS client : ``https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8`` +* iOS client: ``https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8`` + *iOS client app id: ``1125420102`` Apps ---- @@ -1378,6 +1381,29 @@ to be fetched in addition to any requested file. One way to test is applying for a trystack account at http://trystack.org/ +:: + + 'objectstore' => [ + 'class' => 'OC\\Files\\ObjectStore\\Swift', + 'arguments' => [ + 'autocreate' => true, + 'user' => [ + 'name' => 'swift', + 'password' => 'swift', + 'domain' => [ + 'name' => 'default', + ], + ], + 'tenantName' => 'service', + 'serviceName' => 'swift', + 'region' => 'regionOne', + 'url' => "http://yourswifthost:5000/v3", + 'bucket' => 'nextcloud', + ], + ], + +To use swift V3 + Sharing -------