nginx increase upstream size in conf

C++
// Open conf file using 'sudo vim /etc/nginx/nginx.conf'
// Change buffer to 10MB (from default 1MB)

http {
    ...
    client_max_body_size 10M;
}
Source

Also in C++: