Welcome! Log In Create A New Profile

Advanced

could not build the proxy_headers_hash

March 11, 2013 05:24AM
Здравствуйте. Не могу понять как решить проблему с ошибкой:
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;
}
}
Subject Author Posted

could not build the proxy_headers_hash

recived March 11, 2013 05:24AM

Re: could not build the proxy_headers_hash

Ruslan Ermilov March 11, 2013 06:10AM

Re: could not build the proxy_headers_hash

recived March 11, 2013 06:36AM

Re: could not build the proxy_headers_hash

Maxim Dounin March 11, 2013 07:08AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 294
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready