Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRobin McCorkell <rmccorkell@owncloud.com>2015-09-06 20:11:34 +0300
committerRobin McCorkell <rmccorkell@owncloud.com>2015-09-06 20:11:34 +0300
commitc3a327dc385c617bc2daf0b5a51aacfaea2abde1 (patch)
tree548a2b2f94079b6719807b5d27ec32873d71d6eb /config
parent5a1619d80d1d0c80cc668a31526474c39bba0619 (diff)
Add config.sample.php parameter for tempdirectory
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 234bf8e0fa3..f831080d480 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -80,6 +80,16 @@ $CONFIG = array(
'datadirectory' => '/var/www/owncloud/data',
/**
+ * Override where ownCloud stores temporary files. Useful in situations where
+ * the system temporary directory is on a limited space ramdisk or is otherwise
+ * restricted, or if external storages which do not support streaming are in
+ * use.
+ *
+ * The web server user must have write access to this directory.
+ */
+'tempdirectory' => '/tmp/owncloudtemp',
+
+/**
* The current version number of your ownCloud installation. This is set up
* during installation and update, so you shouldn't need to change it.
*/