diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-11-26 00:47:22 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-11-26 00:47:22 +0100 |
commit | e9696a8c9a200a7078a07826141dc81b0a9dd919 (patch) | |
tree | 9c9c3b06e774a4852c1a3beaa6e82d00f5cc2b3d /config | |
parent | e6a7022037086317e235cd703420c7a503bc44e4 (diff) | |
parent | 5d4b7e0e2b789e47a51dd7d047599dd9f8701e60 (diff) | |
download | nextcloud-server-e9696a8c9a200a7078a07826141dc81b0a9dd919.tar.gz nextcloud-server-e9696a8c9a200a7078a07826141dc81b0a9dd919.zip |
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.php | 6 |
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. |