标签:nginx server_names_hash_bucket_size
之前nginx可以正常启动的,后来为了测试方便,就增加多了一些域名也都转向到相同的upstream里面,启动不起来。
去logs/errors.log查看,发现如下字样:
could not build the server_names_hash, you should increase server_names_hash_bucket_size: 32
原来是由于增加多域名后,在默认大小下已经不能正常hash存储了,需要去修改此参数的大小。
修改conf/nginx.conf中的http节为如下示例
http {
server_names_hash_bucket_size 64;
include mime.types;
default_type application/octet-stream;
.....省略
此处为了以后增加方便,没有直接修改为日志中提示的32大小,而是直接修改为64了
再次启动,正常运行
本文出自 “chenql” 博客,请务必保留此出处http://chenql163.blog.51cto.com/2849361/1965154
nginx的server_names_hash_bucket_size问题
标签:nginx server_names_hash_bucket_size
原文地址:http://chenql163.blog.51cto.com/2849361/1965154