summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2014-06-23 16:42:05 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2014-06-23 16:42:05 +0200
commit5756aba5944810ef620e37e5ee6b58b6fb8eaa6e (patch)
tree4851367ad19d2ade6334bd1598e40545e829063c
parent28c1a9557561319910bb86e9d04afcf6bb4bbf4f (diff)
downloadnextcloud-server-5756aba5944810ef620e37e5ee6b58b6fb8eaa6e.tar.gz
nextcloud-server-5756aba5944810ef620e37e5ee6b58b6fb8eaa6e.zip
add disclaimer to objectstore example config
-rwxr-xr-xconfig/config.sample.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index f58d09f16d0..59e1f3890ce 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -312,7 +312,11 @@ $CONFIG = array(
* to the object store container because it only stores the binary data for each file. The
* metadata is currently kept in the local database for performance reasons.
*
- * To test apply for a trystack account at http://trystack.org/
+ * WARNING: The current implementation is incompatible with any app that uses direct file IO and circumvents our
+ * virtual filesystem. That includes Encryption and Gallery. Gallery will store thumbnails directly in the filesystem
+ * and encryption will cause severe overhead because key files need to be fetched in addition to any requested file.
+ *
+ * One way to test is applying for a trystack account at http://trystack.org/
*/
'objectstore' => array(
'class' => 'OC\\Files\\ObjectStore\\Swift',