在给nginx 配置了一个超长的域名后,通过 /usr/local/nginx/sbin/ngnix -t 检查配置文件时出现一下错误: could not build the server_names_hash, you should increase server_names_hash_bucket_size: 32 解决办法是在nginx的配置文件的http段中增加如下配置: server_names_hash_bucket_size 64; 如果已经存在,需要加大后面的数值,注意:该数值是32的倍数为宜。 具体信息可以参看nginx官网:http://nginx.org/cn/docs/http/server_names.html (责任编辑:IT) |