diff options
author | Simon L <szaimen@e.mail.de> | 2023-01-04 12:14:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 12:14:08 +0100 |
commit | 926546333c9b6eaea21ac4006b682d2d9dd0fc3d (patch) | |
tree | 420326bc555e2ba2ca6ecc1d8ebf5e941e8a01e5 | |
parent | ce50acd9b2d7acb3f04fd7c7940e821cb3d76a71 (diff) | |
parent | 328c4cdbb5af25e89d794953e3d4b8454eca6c73 (diff) | |
download | nextcloud-server-926546333c9b6eaea21ac4006b682d2d9dd0fc3d.tar.gz nextcloud-server-926546333c9b6eaea21ac4006b682d2d9dd0fc3d.zip |
Merge pull request #35974 from CaptainSifff/master
elaborate on what is required for using the tempdirectory setting of nextcloud
-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..0267ae51c91 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 your 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', |