diff options
author | Florian Goth <fgoth@physik.uni-wuerzburg.de> | 2023-01-04 01:14:40 +0100 |
---|---|---|
committer | Florian Goth <fgoth@physik.uni-wuerzburg.de> | 2023-01-04 01:14:40 +0100 |
commit | 1e9e7d6283a4242fd93a77f98b54e3389de6fc12 (patch) | |
tree | 9985ad9c8aef0bed5315ce082c9f4cb21fb0208e /config | |
parent | b37a4950e4b2c8cf79b59295a07d40e34afea423 (diff) | |
download | nextcloud-server-1e9e7d6283a4242fd93a77f98b54e3389de6fc12.tar.gz nextcloud-server-1e9e7d6283a4242fd93a77f98b54e3389de6fc12.zip |
elaborate on what is required for using the tempdirectory setting of nextcloud
Signed-off-by: Florian Goth <fgoth@physik.uni-wuerzburg.de>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 4597ce9a77d..12eaa0eef8a 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1840,7 +1840,10 @@ $CONFIG = [ * restricted, or if external storage which do not support streaming are in * use. * - * The Web server user must have write access to this directory. + * The Web server user/PHP must have write access to this directory. + * Additionally you have to make sure, that you php configuration considers this a valid + * tmp directory, by setting the TMP, TMPDIR, and TEMP variables to the required directories. + * On top of that you might be required to grant additional permissions in AppArmor or SELinux. */ 'tempdirectory' => '/tmp/nextcloudtemp', |