<div dir="ltr">Hi,<div><br></div><div>  We're using nginx to upload and serve videos files around 1GB of file size via http. We've been receiving complains from some customers that uploading has some issue and sometimes user are unable to upload videos successfully. Server is installed with Nginx-1.4.7+php-fpm, ffmpeg, MP4Box. On checking the nginx logs, we didn't got anything but Following messages :<br><br><div>2015/04/16 16:49:53 [alert] 15077#0: open socket #81 left in connection 49</div><div>2015/04/16 16:49:53 [alert] 15084#0: open socket #48 left in connection 19</div><div>2015/04/16 16:49:53 [alert] 15077#0: open socket #84 left in connection 51</div><div>2015/04/16 16:49:53 [alert] 15084#0: open socket #52 left in connection 21</div><div>2015/04/16 16:49:53 [alert] 15077#0: open socket #87 left in connection 53</div><div>2015/04/16 16:49:53 [alert] 15079#0: open socket #81 left in connection 46</div><div>2015/04/16 16:49:53 [alert] 15084#0: open socket #53 left in connection 22</div><div><br></div>Here is the nginx.conf<br><br><div>user  nginx;</div><div>worker_processes  16;</div><div>worker_rlimit_nofile 300000; #2 filehandlers for each connection</div><div>error_log /usr/local/nginx/logs/error.log crit;</div><div>#access_log logs/access.log;</div><div>#pid        logs/nginx.pid;</div><div><br></div><div><br></div><div>events {</div><div>    worker_connections  6000;</div><div>    use epoll;</div><div>}</div><div>http {</div><div>    include       mime.types;</div><div>    default_type  application/octet-stream;</div><div>    client_max_body_size 3000M;</div><div>    client_body_buffer_size 2000M;</div><div>    sendfile_max_chunk 128k;</div><div>    client_header_buffer_size 256k;</div><div>    large_client_header_buffers 4 256k;</div><div>    output_buffers 1 512k;</div><div>    server_tokens off; #Conceals nginx version<br></div><div>   access_log  /usr/local/nginx/logs/access.log ; </div><div>   access_log off;</div><div>    sendfile        off;</div><div>       ignore_invalid_headers on;</div><div>    client_header_timeout  60m;</div><div>    client_body_timeout 60m;</div><div>    send_timeout     60m;</div><div>    reset_timedout_connection on;    </div><div>    </div><div>        keepalive_timeout 15;</div><div>        include "/usr/local/nginx/conf/vhosts/*.conf";</div><div>    error_page 404 = /thumb.php;</div><div>    error_page   403 /forbidden.html;</div><div>}<br><br>If anyone can help me with this ?<br><br>Regards.</div></div><div>Shahzaib</div></div>