3 messages in ru.sysoev.nginx[confused] a client request body is b...
FromSent OnAttachments
Glen LumanauJul 13, 2009 1:08 am 
Igor SysoevJul 13, 2009 1:23 am 
Glen LumanauJul 13, 2009 2:17 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[confused] a client request body is buffered to a temporary fileActions...
From:Glen Lumanau (gl@lumanau.web.id)
Date:Jul 13, 2009 1:08:49 am
List:ru.sysoev.nginx

I tried to find on google for the solution for this

But still no luck

2009/07/13 15:05:22 [warn] 32467#0: *6899 a client request body is buffered to a temporary file /var/lib/nginx/body/0/00/0000000000, client: 192.168.254.16, server: mydomain.com, request: "POST /backend.php/F3/saveTV HTTP/1.0", host: "mydomain.com", referrer: http://mydomain.com/backend.php/F3/add

Here's the config that I used

server {

listen 80 default;

server_name mydomain.com www.mydomain.com;

root /home/web;

index index.php;

charset utf-8;

location ~ \.(gif|jpg|png|jpeg|swf|js|css|flv)$ {

expires 30d;

}

location / {

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header Host $http_host;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_pass http://127.0.0.1:8080;

client_max_body_size 500m;

client_body_buffer_size 1024k;

proxy_connect_timeout 100;

proxy_send_timeout 100;

proxy_read_timeout 100;

fastcgi_read_timeout 180;

proxy_buffer_size 64k;

proxy_buffers 4 64k;

proxy_busy_buffers_size 128k;

proxy_temp_file_write_size 128k;

Help me please.. i'm so confused