Hi ,

I am using nginx running with version 1.10.2
Also could you please suggest what is the permanent solution for this also
what does exactly use_temp_path does?
Should we keep it explicitly on , we have not set this directive in our
nginx.conf.

Below is sample nginx.conf for your reference , kindly suggest wherever
modification is required :

worker_processes  auto;
events {
 worker_connections  4096;
 use epoll;
 multi_accept on;
}
worker_rlimit_nofile   100001;
http {
 include       mime.types;
 default_type  video/mp4;
 proxy_buffering           on;
 proxy_buffer_size         4096k;
 proxy_buffers             5 4096k;
 sendfile                  on;
 keepalive_timeout         30;
 tcp_nodelay               on;
 tcp_nopush                on;
 reset_timedout_connection on;
 gzip                      off;
 server_tokens          off;

Posted at Nginx Forum: 
https://forum.nginx.org/read.php?2,271756,271762#msg-271762

_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to