
Nginx
猛犸学长
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[emerg] could not build server_names_hash, you should increase server_names_hash_bucket_size:32
解决nginx报错 nginx: [emerg] could not build server_names_hash, you should increase server_nam es_hash_bucket_size: 32 nginx: configuration file xxxx/conf/nginx.conf test failed 报错原因 该报错产生的原因主要是因为Nginx中的...原创 2019-05-23 15:46:42 · 15871 阅读 · 0 评论 -
Nginx状态码413 Request EntityToo Large问题解决
问题原因 通常出现该问题的原因是因为client端上传的附件大小超过Nginx设置的默认大小。 解决 找到nginx.conf的配置文件在有效的http字段添加如下代码 http { ... client_max_body_size 8M; #设置客户端上传最大文件大小,如果继续报错继续加大 client_body_buffer_size 128...原创 2019-05-28 10:08:05 · 3183 阅读 · 0 评论