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: "KaMaToZzz" <nginx-forum@xxxxxxxx>
- Date: Wed, 29 Dec 2010 07:36:04 -0500
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Sender:From:References:In-Reply-To:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To:Date; bh=cBrkj0x0eGZD2s/keRlCFX+mYw2p9zxBeHrEyK32b3I=; b=ra757FCo2xTba+y2yhvZqqTrDI9mtxHktFZb2Hjsr5M4ljsz+Mod6L58B7d2/9nDTydm4+4XmW0ijCDLo1aaPUBrB0byKjKq+1GykH11iggAIAr3hgGH2Sry0ZtCY0hu;
- In-reply-to: <E1PXugs-0001xT-00.foxr-mail-ru@xxxxxxxxxxxx>
- References: <E1PXugs-0001xT-00.foxr-mail-ru@xxxxxxxxxxxx>
тоже самая проблема, время ожидание
начиная от 5 секунд и иногда бывает
выше, но не меньше.
вот мой конфиг:
[code]
#######################################################################
#
# This is the main Nginx configuration file.
#
# More information about the configuration options is available on
# * the English wiki - http://wiki.codemongers.com/Main
# * the Russian documentation - http://sysoev.ru/nginx/
#
#######################################################################
#----------------------------------------------------------------------
# Main Module - directives that cover basic functionality
#
# http://wiki.codemongers.com/NginxMainModule
#
#----------------------------------------------------------------------
user www;
worker_processes 8;
worker_rlimit_nofile 8192;
error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
pid /var/run/nginx.pid;
timer_resolution 100ms;
#----------------------------------------------------------------------
# Events Module
#
# http://wiki.codemongers.com/NginxEventsModule
#
#----------------------------------------------------------------------
events {
worker_connections 4096;
use kqueue;
}
#----------------------------------------------------------------------
# HTTP Core Module
#
# http://wiki.codemongers.com/NginxHttpCoreModule
#
#----------------------------------------------------------------------
http {
include /usr/local/etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local]
$request '
'"$status" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log off;
sendfile on;
#tcp_nopush on;
client_max_body_size 10M;
#keepalive_timeout 0;
keepalive_timeout 65;
send_timeout 140;
client_body_timeout 140;
client_header_timeout 140;
gzip on;
charset utf8;
include hosts/fun3.conf;
include hosts/wp3.conf;
include hosts/wp-rdirect.conf;
include hosts/live.conf;
include hosts/cacti.conf;
#include hosts/test.conf;
}
[/code]
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,161925,161934#msg-161934
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|