I found this occured in last 2 days.<br>Are you changed any configuration in last 2 days?<br><br>Thanks.<br><br><br><br><div class="gmail_quote">On Thu, Feb 26, 2009 at 2:53 PM, Joe <span dir="ltr">&lt;<a href="mailto:frumentius@gmail.com">frumentius@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hello,<br><br>Wew...<br>Is this Kaskus?<br>I will learn your configuration first.<br><br>Thanks.<div>
<div></div><div class="Wj3C7c"><br><br><br><br><div class="gmail_quote">On Thu, Feb 26, 2009 at 10:59 AM, misael <span dir="ltr">&lt;<a href="mailto:zen@bps.co.id" target="_blank">zen@bps.co.id</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">hi nginx users,<br>
<br>
first of all i like to thank you for this great application,<br>
i recently used nginx for my community  forum  backend with vbulletin, and the average user online are 10.000 users.<br>
the problems was, sometimes our visitor can&#39;t load the page (post/thread) at full page.<br>
i use -RELEASE FreeBSD 7.0-RELEASE with dual Quad 2 core processors and 8GB RAM.<br>
and here  is my nginx.conf:<br>
----snip----<br>
<br>
user  www;<br>
worker_processes  4;<br>
worker_rlimit_nofile 200000;<br>
error_log  /var/log/error.log warn;<br>
<br>
events {<br>
   worker_connections  102400;<br>
   use kqueue;<br>
}<br>
<br>
<br>
http {<br>
<br>
   include       mime.types;<br>
   default_type  application/octet-stream;<br>
<br>
   log_format  main  &#39;$remote_addr - $remote_user [$time_local] $request &#39;<br>
                     &#39;&quot;$status&quot; $body_bytes_sent &quot;$http_referer&quot; &#39;<br>
                     &#39;&quot;$http_user_agent&quot; &quot;$http_x_forwarded_for&quot;&#39;;<br>
<br>
<br>
   sendfile        on;<br>
   tcp_nopush     on;<br>
       client_header_timeout          10m;<br>
       client_body_timeout                    10m;<br>
       send_timeout                           10m;<br>
       connection_pool_size            256;<br>
       client_header_buffer_size       1k;<br>
       large_client_header_buffers     4 8k;<br>
       request_pool_size                       4k;<br>
       ignore_invalid_headers          on;<br>
<br>
   reset_timedout_connection on;<br>
   keepalive_timeout  0;<br>
   tcp_nodelay on;<br>
   gzip  on;<br>
   gzip_proxied any;<br>
   gzip_vary on;<br>
   gzip_comp_level 9;<br>
   gzip_min_length 1100;<br>
   gzip_http_version 1.0;<br>
   gzip_buffers 4 8k;<br>
   gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;<br>
   output_buffers 1 32k;<br>
   postpone_output 1460;<br>
<br>
<br>
<br>
  server_names_hash_max_size 4096;<br>
  server_names_hash_bucket_size 128;<br>
<br>
  upstream foobar {<br>
       ip_hash;<br>
       server <a href="http://10.10.1.9:80" target="_blank">10.10.1.9:80</a>; #weight=1;  # pong6<br>
       server <a href="http://10.10.1.22:80" target="_blank">10.10.1.22:80</a>; #weight=2;  # web1<br>
       server <a href="http://10.10.1.3:80" target="_blank">10.10.1.3:80</a>; #weight=2;   # web2<br>
       server <a href="http://10.10.1.5:80" target="_blank">10.10.1.5:80</a>; #weight=1;   # web4<br>
       server <a href="http://10.10.1.6:80" target="_blank">10.10.1.6:80</a>; #weight=2;   # web5<br>
   }<br>
<br>
   server {<br>
       listen  80 default rcvbuf=8192 sndbuf=16384;<br>
       client_max_body_size       50m;<br>
<br>
       server_name <a href="http://foobar.org" target="_blank">foobar.org</a>;<br>
<br>
<br>
       if ($host = &quot;<a href="http://foobar.org" target="_blank">foobar.org</a>&quot;){<br>
       rewrite ^(.*)$ <a href="http://www.foobar.org" target="_blank">http://www.foobar.org</a>$1 permanent;<br>
       break;<br>
       }<br>
<br>
       error_page  404              /404.html;<br>
<br>
       error_page   500 502 503 504  /50x.html;<br>
       location = /50x.html {<br>
           root   /usr/local/www/nginx-dist;<br>
       }<br>
<br>
          location ~ &quot;^/&quot; {<br>
          index  index.php index.htm index.html;<br>
           proxy_ignore_client_abort   on;<br>
           proxy_buffering     on;<br>
           proxy_next_upstream timeout;<br>
          client_max_body_size       10m;<br>
           client_body_buffer_size    1024k;<br>
           proxy_connect_timeout       75;<br>
           proxy_read_timeout          300;<br>
           proxy_buffer_size          256k;<br>
           proxy_buffers              128 256k;<br>
           proxy_busy_buffers_size    512k;<br>
           proxy_temp_file_write_size 1024k;<br>
           proxy_redirect     off;<br>
           proxy_set_header    Host             $host;<br>
           proxy_set_header X-Forwarded-For $remote_addr;<br>
           proxy_set_header   X-Real-IP        $remote_addr;<br>
           proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;<br>
           proxy_pass  <a href="http://foobar" target="_blank">http://foobar</a>;<br>
       }<br>
<br>
   }<br>
}<br>
<br>
<br>
<br>
----snip---<br>
and there were no error log regarding this problem,<br>
<br>
only these few warn msg (which i&#39;m not sure what does it mean)<br>
<br>
----snip---<br>
<br>
2009/02/26 10:44:39 [warn] 99639#0: *6265776 a client request body is buffered to a temporary file /var/tmp/nginx/client_body_temp/0000000000 while sending request to upstream, client: 125.163.1.248, server: <a href="http://kaskus.us" target="_blank">kaskus.us</a>, request: &quot;POST /newreply.php?do=postreply&amp;t=866095 HTTP/1.1&quot;, upstream: &quot;<a href="http://10.10.1.5:80/newreply.php?do=postreply&amp;t=866095" target="_blank">http://10.10.1.5:80/newreply.php?do=postreply&amp;t=866095</a>&quot;, host: &quot;<a href="http://www.foobar.org" target="_blank">www.foobar.org</a>&quot;, referrer: &quot;<a href="http://www.foobar.org/newreply.php?do=postreply&amp;t=866095" target="_blank">http://www.foobar.org/newreply.php?do=postreply&amp;t=866095</a>&quot;<br>


114.58.83.207, server: <a href="http://kaskus.us" target="_blank">kaskus.us</a>, request: &quot;POST /ajax.php?do=verifyusername HTTP/1.1&quot;, upstream: &quot;<a href="http://10.10.1.9:80/ajax.php?do=verifyusername" target="_blank">http://10.10.1.9:80/ajax.php?do=verifyusername</a>&quot;, host: &quot;<a href="http://www.foobar.org" target="_blank">www.foobar.org</a>&quot;, referrer: &quot;<a href="http://www.foobar.org/register.php?do=register" target="_blank">http://www.foobar.org/register.php?do=register</a>&quot;<br>


----snip----<br>
<br>
i need to find the solution for this problem,<br>
and i hope all the nginx gurus here would be so kind enough to help me<br>
<br>
and sorry for my poor english<br>
<br>
Regards<br>
<br>
Zen<br>
<br>
<br>
<br>
<br>
<br>
Disclaimer:<br>
<br>
This email and its attachments may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of the company.<br>


If you are not the intended recipient of this email and its attachments, you must take no action based upon them, nor must you copy or show them to anyone.<br>
Please contact the system manager if you believe you have received this email in error.<br>
Finally, the recipient should check this email and any attachments for the presence of viruses.<br>
The company accepts no liability for any damage caused by any virus transmitted by this email.<br>
<br>
</blockquote></div><br>
</div></div></blockquote></div><br>