diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-29 17:23:27 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-11-25 16:29:06 +0100 |
commit | a6c088a1ef1ff8f1e1161ab9a61d8f1e57231b15 (patch) | |
tree | 8aad1443184cd2b519a2062be1df7c357fb48379 /config | |
parent | 6fb2477fb75d4c982a1568e2392d17fd7cc2fd4b (diff) | |
download | nextcloud-server-a6c088a1ef1ff8f1e1161ab9a61d8f1e57231b15.tar.gz nextcloud-server-a6c088a1ef1ff8f1e1161ab9a61d8f1e57231b15.zip |
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 2287b7af7dd..bacde038b91 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. |