diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-02-29 13:39:27 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2016-03-01 15:29:19 +0100 |
commit | 49d3a7d0bb2ad9faf4b014edbd8ee86a2710c5b1 (patch) | |
tree | 5641b6c7157803c4c483e90a83e6da6043c61215 /config | |
parent | 37f12068180c33fe09e5c0d342a9ba1ec646f7aa (diff) | |
download | nextcloud-server-49d3a7d0bb2ad9faf4b014edbd8ee86a2710c5b1.tar.gz nextcloud-server-49d3a7d0bb2ad9faf4b014edbd8ee86a2710c5b1.zip |
add config sample
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 81a02efb3f7..1a6c8b31280 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1104,6 +1104,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. */ |