Nextcloud unknown error with files over 1 GB only from the client?

Hi,

I have Nextcloud running on a Raspberry Pi 5 8 GB as a Docker image. So far, most things work except for updating and uploading files over 1 GB from the client. The web interface doesn't cause any problems. I've already disabled the limit in the client settings. However, the result remains the same. I've spent weeks searching Google and tried absolutely everything I could find. To no avail.

Therefore, I now ask you for advice.

Thank you very much.

1 vote, average: 1.00 out of 1 (1 rating, 1 votes, rated)
You need to be a registered member to rate this.
Loading...
Subscribe
Notify of
5 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
iQa1x
9 months ago

Try passing "–env APACHE_BODY_LIMIT=0" as a parameter to the container when running "docker run…". This defaults to 1GB; 0 disables it.

PS: It's kind of weird that the client that doesn't have the problem doesn't do chunked uploads… but I don't use Docker either, I have it installed natively.

evtldocha
9 months ago

Read here: https://help.nextcloud.com/t/error-at-upload-download-grosser-felder/129806

It says:

For anyone who might have a similar problem, here is my solution:

The problem was due to the nginx reverse proxy and proxy_pass in front of it. After setting the parameters

 proxy_max_temp_file_size 0;

in the server tag, the download works as intended. Furthermore, loading large video files from the apps now finally works.