diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-02-29 13:39:27 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2016-03-01 14:51:31 +0100 |
commit | cf63a1693535a7a4d0e27a93c059bdddd0015419 (patch) | |
tree | 6390eca85c7b26b884e886c3d47da3bbe0f91382 /config | |
parent | c12057873508bb984f326110ca42ceb5aa1ef6d2 (diff) | |
download | nextcloud-server-cf63a1693535a7a4d0e27a93c059bdddd0015419.tar.gz nextcloud-server-cf63a1693535a7a4d0e27a93c059bdddd0015419.zip |
add config sample
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index d572adf1a05..31ebd2d0321 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -406,7 +406,7 @@ $CONFIG = array( * delete all files in the trash bin that are older than D days * automatically, delete other files anytime if space needed * * ``D1, D2`` - * keep files and folders the in trash bin for at least D1 days and + * keep files and folders the in trash bin for at least D1 days and * delete when exceeds D2 days * * ``disabled`` * trash bin auto clean disabled, files and folders will be kept forever @@ -1060,6 +1060,14 @@ $CONFIG = array( 'filesystem_check_changes' => 0, /** + * On default ownCloud will store the part files created during upload in the + * same storage as the upload target. Setting this to false will store the part + * files in the root of the users folder which might be required to work with certain + * external storage setups that have limited rename capabilities. + */ +'part_file_in_storage' => true, + +/** * All css and js files will be served by the web server statically in one js * file and one css file if this is set to ``true``. This improves performance. */ |