Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorBernieO <BernieO@users.noreply.github.com>2018-02-26 20:42:27 +0300
committerGitHub <noreply@github.com>2018-02-26 20:42:27 +0300
commit7b8ff8d858abd123d103dfad31f2cb733909a993 (patch)
treea433b78e43f4e5568ac1055e0cc67ed7079e617b /config
parent8867629cf1b195b6c0e4616d8943f4fd31c42b7b (diff)
fix: change 'sqlite' to 'sqlite3'
@MorrisJobke asked me to open this pull request in the server repo instead of the documentation repo: https://github.com/nextcloud/documentation/pull/690 Text from the documentation pull request: On a fresh Nextcloud 13 Installation the default value for dbtype in config.php is 'sqlite3' (and not 'sqlite'). I also noticed that on previous versions. Despite the fact that Nextcloud 13 also works though, if that value is manually changed to 'sqlite', I would suggest to change that in the documentation to the actually used value created when installing Nextcloud - and that is 'sqlite3'.
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index e91452a0720..8f5b1a2cee3 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -92,13 +92,13 @@ $CONFIG = array(
* ``supportedDatabases``
*
* Available:
- * - sqlite (SQLite3)
+ * - sqlite3 (SQLite3)
* - mysql (MySQL/MariaDB)
* - pgsql (PostgreSQL)
*
- * Defaults to ``sqlite``
+ * Defaults to ``sqlite3``
*/
-'dbtype' => 'sqlite',
+'dbtype' => 'sqlite3',
/**
* Your host server name, for example ``localhost``, ``hostname``,