Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
could not build the proxy_headers_hash
- To: nginx-ru@xxxxxxxxx
- Subject: could not build the proxy_headers_hash
- From: "recived" <nginx-forum@xxxxxxxx>
- Date: Mon, 11 Mar 2013 05:24:38 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tigger.jlkhosting.com; s=x; h=Date:Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=hWsJ+wV7UE7Gj7GoaxyS4DqX2r7zIGlqBJxY1O3y4LQ=; b=ISI7cS3nAcDUx1Nnk/W2sbzLGDPECdKFhHRqtqf9bs6wAiJp89iGVfJvTw46IsDV8Q48zbJ/4MCgpF8gogAM1CUdxQ9peTGp5f3HpjVjYVQ4d3/KDyox45XaH6ll6GYA;
Здравствуйте. Не могу понять как решить проблему с ошибкой:
nginx: [emerg] could not build the proxy_headers_hash, you should increase
either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size:
64
(nginx/1.1.19)
Подскажите пожалуйста.
------------------------------------------------------------------------------------------------
nginx.conf
------------------------------------------------------------------------------------------------
user www-data;
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
server_names_hash_bucket_size 64;
server_names_hash_max_size 512;
##
# Logging Settings
##
log_format main '$host $remote_addr [$time_local] "$request" $status
$body_bytes_sent "$http_referer" "$http_user_agent"';
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
------------------------------------------------
mysite.tpl
------------------------------------------------
server {
listen 80;
server_name mysite.tpl;
access_log /var/www/mysite.tpl/logs/access_ng.log;
error_log /var/wwwsite/mysite.tpl/logs/error_ng.log;
location ~* \.(gif|png|css|zip|swf|ico|flv|jpg)$ {
root /var/wwwsite/mysite.tpl/www/;
#index index.html index.php;
access_log off;
expires max;
gzip on;
gzip_comp_level 5;
gzip_vary on;
gzip_static on;
gzip_types text/css text/plain application/json application/x-javascript
text/xml application/xml application/xml+rss text/javascript
application/javascript text/x-js application/x-shockwave-flash;
gzip_min_length 1024;
gzip_disable "msie6";
gzip_proxied any;
}
location / {
proxy_pass http://192.168.4.250:82/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-for $remote_addr;
proxy_set_header Host $host;
proxy_connect_timeout 60;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_redirect off;
}
}
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,237218,237218#msg-237218
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|