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:
authorMorris Jobke <hey@morrisjobke.de>2014-11-26 02:47:22 +0300
committerMorris Jobke <hey@morrisjobke.de>2014-11-26 02:47:22 +0300
commite9696a8c9a200a7078a07826141dc81b0a9dd919 (patch)
tree9c9c3b06e774a4852c1a3beaa6e82d00f5cc2b3d /config
parente6a7022037086317e235cd703420c7a503bc44e4 (diff)
parent5d4b7e0e2b789e47a51dd7d047599dd9f8701e60 (diff)
Merge pull request #12420 from owncloud/sqlite-wal-2
adding new config parameter for sqlite to specify the journal mode
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index bf26172c494..2a9b43d5690 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -134,6 +134,12 @@ $CONFIG = array(
),
/**
+ * sqlite3 journal mode can be specified using this config parameter - can be 'WAL' or 'DELETE'
+ * see for more details https://www.sqlite.org/wal.html
+ */
+'sqlite.journal_mode' => 'DELETE',
+
+/**
* Indicates whether the ownCloud instance was installed successfully; ``true``
* indicates a successful installation, and ``false`` indicates an unsuccessful
* installation.