Answers for "nginx increase upstream size in conf"

0

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;
}
Posted by: Guest on September-22-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language