Upload hangs with files greater or equal to 1MB

Hi, before proceeding with the pro version, I wanted to test seafile ce …

Unfortunately, I realized that the system hangs if I upload files greater than or equal to 1MB …

I use a vhost on nginx which redirects (proxy_pass http) to a docker seafile (I don’t publish ports on the internet)

Could you help me solve the problem?
seafile seems just what I was looking for …

I think to have resolved… I have inserted:

  • http:
 http {
 ...
 client_max_body_size 0;
 }
  • server:
 server {
 ...
 client_max_body_size 0;
 }
  • location:
 location /uploads {
 ...
 client_max_body_size 0;
 } 

in all nginx.conf. So, the issue was connected to a miss configuration of nginx