set max_conn in nginx code example
Example: nginx increase upstream size in conf
// Open conf file using 'sudo vim /etc/nginx/nginx.conf'
// Change buffer to 10MB (from default 1MB)
http {
...
client_max_body_size 10M;
}
// Open conf file using 'sudo vim /etc/nginx/nginx.conf'
// Change buffer to 10MB (from default 1MB)
http {
...
client_max_body_size 10M;
}