excessive RAM consumption - memory leak
    Yordan Georgiev 
    y.georgiev at gmail.com
       
    Fri Feb 22 12:35:47 MSK 2008
    
    
  
Please excuse my bad english...
I use nginx version: nginx/0.5.35 built by gcc 4.1.1 (Gentoo 4.1.1-r3). Load
average: 0.08, 0.06, 0.01. This server provide 10-12M/s images content. And
my config is:
user nginx nginx;
worker_processes 8;
error_log off;
events {
        worker_connections  24576;
        use epoll;
}
http {
        include         /etc/nginx/mime.types;
        default_type    application/octet-stream;
        client_header_timeout   2m;
        client_body_timeout     2m;
        send_timeout            2m;
        connection_pool_size            1024;
        client_header_buffer_size       1k;
        large_client_header_buffers     4 4k;
        request_pool_size               4k;
        gzip off;
        output_buffers  1 32k;
        postpone_output 1460;
        sendfile        on;
        tcp_nopush      off;
        tcp_nodelay     off;
        keepalive_timeout       75 20;
        ignore_invalid_headers  on;
        index index.html;
        server {
                listen          My.IP;
                server_name     My.IP;
                access_log   off;
                root /storage;
                location / {
                        error_page 404 = @backend;
                }
                location @backend {
                        proxy_pass http://server2.my-domain.tld;
                }
        }
}
-- 
С уважение,
Й. Георгиев.
WEB: http://gigavolt-bg.net/
Blog:  http://live.gigavolt-bg.net/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://nginx.org/pipermail/nginx/attachments/20080222/23abee37/attachment.html>
    
    
More information about the nginx
mailing list