Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re[2]: Странности с large_client _header_buffers
- To: "Alexey V. Karagodov" <nginx-ru@xxxxxxxxx>
- Subject: Re[2]: Странности с large_client _header_buffers
- From: "Martsul, Vladimir" <mvs@xxxxxxxxx>
- Date: Fri, 8 Aug 2008 15:10:39 +0700
- Content-class: urn:content-classes:message
- Thread-index: Acj5Lj6XLaItnROgQhSC3vqX4C2Gsw==
- Thread-topic: Re[2]: Странности с large_client _header_buffers
user nginx nginx;
worker_processes 2;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
use epoll;
}
http {
include /etc/nginx/mime.types;
error_log /var/log/nginx/error.log notice;
log_format main '$remote_addr [$time_local] $host $request $status
$body_bytes_sent "$http_referer" "$http_user_agent"';
access_log /var/log/nginx/access.log main;
server_tokens off;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
client_body_timeout 30;
client_header_timeout 30;
keepalive_timeout 5 5;
send_timeout 30;
reset_timedout_connection on;
index index.html
large_client_header_buffers 8 16k;
server {
server_name 1.2.3.4;
root /var/www/localhost/htdocs/;
listen 1.2.3.4;
}
}
> конфиг в студию
> listen указывается?
> в директиве явно указывается порт?
> On 08.08.2008, at 9:01, Martsul, Vladimir wrote:
>> Есть почти дефолтный nginx.conf,
>> настроенный на отдачу только статики
>> (диаграмм munin).
>> При наличии строки
>> large_client_header_buffers 8 16k;
>> nginx запускается и работает нормально,
>> слушает 80-й порт, но если убрать эту
>> строку
>> (закомментарить), то nginx запускается,
>> но не слушает порт (netstat -an|grep :80 пусто)
>> В логах при этом ничего нет.
>>
>> # nginx -V
>> nginx version: nginx/0.7.8
>> configure arguments: --prefix=/usr --conf-path=/etc/nginx/nginx.conf
>> --http-log-path=/var/log/nginx/access_log --error-log-path=/var/log/
>> nginx/error_log --pid-path=/var/run/nginx.pid --http-client-body-
>> temp-path=/var/tmp/nginx/client --http-proxy-temp-path=/var/tmp/
>> nginx/proxy --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi --with-
>> md5-asm --with-md5=/usr/include --with-sha1-asm --with-sha1=/usr/
>> include --without-http_fastcgi_module --without-http_gzip_module --
>> without-pcre --without-http_rewrite_module
>>
>> # uname -a
>> Linux dev0 2.6.18-028stab053 #1 SMP Tue Jan 29 01:07:42 NOVT 2008
>> x86_64 Intel(R) Core(TM)2 Quad CPU @ 2.40GHz GenuineIntel GNU/Linux
>>
|