nginx の client request body is buffered to a temporary file 警告の対処方法

● nginx の client request body is buffered to a temporary file 警告の対処方法

[warn] 15554#0: *3274 a client request body is buffered to a temporary file /var/cache/nginx/client_temp/0000000007

この警告についてですが client_body_buffer_size のサイズを大きくする ことで出なくなる可能性があります。 ( ただし大きくしすぎは注意 !! )

cat nginx.conf | grep client_body_buffer_size
    client_body_buffer_size 768k;

この値を大きくします。

    client_body_buffer_size 768k;
No.1548
07/12 10:25

edit