博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx: could not build the server_names_hash 解决办法
阅读量:5890 次
发布时间:2019-06-19

本文共 788 字,大约阅读时间需要 2 分钟。

# /etc/init.d/nginx reload * Reloading nginx configuration nginx                                            [fail]# nginx -tnginx: [emerg] could not build the server_names_hash, you should increase either server_names_hash_max_size: 512 or server_names_hash_bucket_size: 64nginx: configuration file /etc/nginx/nginx.conf test failed# tail /var/log/nginx/error.log2015/01/28 10:21:51 [emerg] 22362#0: could not build the server_names_hash, you should increase either server_names_hash_max_size: 512 or server_names_hash_bucket_size: 64

解决办法是在 nginx 配置文件的 http 段中增加如下配置:

# vi /etc/nginx/nginx.conf...http {        ...        server_names_hash_max_size 512;        server_names_hash_bucket_size 128;        ...}...

 

 

原文:http://www.vpsee.com/2015/02/nginx-could-not-build-the-server_names_hash/

 

转载地址:http://qnfsx.baihongyu.com/

你可能感兴趣的文章
WeChat Official Account Admin Platform API Introduction
查看>>
C语言写单链表的创建、释放、追加(即总是在最后的位置增加节点)
查看>>
poj1635
查看>>
C# LINQ详解(一)
查看>>
视频直播点播nginx-rtmp开发手册中文版
查看>>
ruby学习总结04
查看>>
Binary Tree Paths
查看>>
Ueditor自定义ftp上传
查看>>
线程以及多线程
查看>>
PHP队列的实现
查看>>
单点登录加验证码例子
查看>>
[T-SQL]从变量与数据类型说起
查看>>
稀疏自动编码之反向传播算法(BP)
查看>>
二叉搜索树转换成双向链表
查看>>
WebLogic和Tomcat的区别
查看>>
java类中 获取服务器的IP 端口
查看>>
occActiveX - ActiveX with OpenCASCADE
查看>>
redmine
查看>>
css 序
查看>>
DirectshowLib摄像头拍照的”未找到可用于建立连接的介质筛选器组合“ 解决办法...
查看>>