|
|
|
|
АРХИВ :: nginx-ru
|
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Ресурсов на рабочий процесс
- To: nginx-ru@xxxxxxxxx
- Subject: Re: Ресурсов на рабочий процесс
- From: "Александр Кутузов" <alleteam@xxxxxxxxx>
- Date: Mon, 23 Jun 2008 23:52:10 +0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=2/gbE7QkYmV/bIQGqUStEYBTiWRZi5K5YwqV9Q3ySw4=; b=ZxzBkorx878ghTWEvPXJ+0bK5v43Et2CUjryTBVwzCC7Y44zW7F8/f2jJLKRuiLWZ6 MvmkcjF+Z7Z7sDgLE1wKyPRQMIPUoBJwTjDL2EYzgGKxhvHvCgokDlQsPOAKaQn0Fgp0 OcKVGrLMviUoCC72oAApo0VkSg5RODi+DBeF0=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=agN4CFEZSviv2pkUUH6bI+3BH0SAZgn3O7Z0ZcI1RIB9Gu1/FwZXj1BTRMUs9GcXJ6 mYr5j9uSbo07N1RwTagGAUPNSMl5aA2aTXGMYkEL9oWgnP2OFNGztF6XvteHVzA4GP4F YgV+qOsuP4zi3JNT5YYIUsPSSP1u6f+QxaR1Y=
- In-reply-to: <20080623192213.GB94584@xxxxxxxxxxxxx>
- References: <9b223bf20806230927p43ea463as1de47a8a8b8566bf@xxxxxxxxxxxxxx> <20080623192213.GB94584@xxxxxxxxxxxxx>
user apache apache;
worker_processes 8;
pid /var/run/nginx.pid;
error_log /var/log/nginx/error_log error;
events {
worker_connections 8192;
use epoll;
}
http {
access_log /var/log/nginx/access_log combined;
include /etc/nginx/mime.types;
default_type application/octet-stream;
client_header_timeout 10m;
client_body_timeout 10m;
send_timeout 10m;
connection_pool_size 256;
client_header_buffer_size 32k;
large_client_header_buffers 64 64k;
request_pool_size 4k;
client_max_body_size 1024m;
proxy_buffering on;
proxy_buffers 128 512k;
proxy_buffer_size 32k;
proxy_read_timeout 120;
proxy_connect_timeout 30;
proxy_send_timeout 30;
proxy_ignore_client_abort off;
proxy_intercept_errors off;
gzip on;
gzip_comp_level 4;
gzip_disable "MSIE [1-6]\.";
gzip_min_length 1100;
gzip_buffers 4 8k;
gzip_types text/plain text/css text/xml
application/x-javascript;
output_buffers 4 32k;
postpone_output 1460;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 300 300;
upload_progress proxied 8m;
ignore_invalid_headers on;
limit_zone one $binary_remote_addr 10m;
include /etc/nginx/vhost.conf;
}
|
|
|