Change the folder where public upload chunks are stored.
How to use GitHub
- Please use the 👍 reaction to show that you are interested into the same feature.
- Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue.
- Subscribe to receive notifications on status change and new comments.
Is your feature request related to a problem? Please describe. Currently public file uploads are temporarily stored in /tmp and then moved to the actual location in the nextcloud data directory.
This can be a problem for users who do not have a dedicated partition with fixed size for /tmp or users who use Nextcloud-AIO in docker as it can completely fill up the partition or location where they have the docker installation files.
Describe the solution you'd like
It is known that for nextcloud 31 public file uploads will be migrated to vue in the application files and will support chunking, so why not take advantage and change the way they are stored temporarily, for example in the data directory as well as uploads are stored for registered users (data/user/uploads) can be /data/public/uploads in this case.
Additional context
(See)