Sto caricando un file da 26 GB, ma sto ottenendo:
413 Request Entity Too Large
Lo so, questo è legato a client_max_body_size
, quindi ho questo parametro impostato su 30000M
.
location /supercap {
root /media/ss/synology_office/server_Seq-Cap/;
index index.html;
proxy_pass http://api/supercap;
}
location /supercap/pipe {
client_max_body_size 30000M;
client_body_buffer_size 200000k;
proxy_pass http://api/supercap/pipe;
client_body_temp_path /media/ss/synology_office/server_Seq-Cap/tmp_nginx;
}
Ma ho ancora questo errore quando l'intero file è stato caricato.