Problem when download large file

Hello
I use seafile 11.0.9 (install on ubuntu 24.04, docker) via web interface, I can upload files larger than 10GB, but I can’t download file > about 900MB. The download process of a few hundred MB stops and I can’t find any log related to that error. This also happens with large files up to nearly 1GB. Smaller files can still be downloaded normally.
If anyone has encountered this error, please help me, or if there is any article about this issue, please give me the link, thank you

Do you use nginx or apache as proxy? Did you check the configuration there?
nginx or apache definately could have such a limitation like described here: Nginx does not serve large files - Server Fault

I did the following in /etc/nginx/nginx.conf and solved the problem, thank you.
client_max_body_size 128M;
proxy_max_temp_file_size 0;
proxy_buffering off;
server_names_hash_bucket_size 256;

Glad to see you found a solution.

I have not seen this directive used in Nginx configurations for Seafile. Can you say more about why it is necessary (or useful) and how it helps with problems of this kind?

-Thank you