- Nginx could not build server_nam
- nginx: [emerg] could not build s
- nginx could not build the server
- Nginx:could not build optimal se
- 拖入其他语言的源代码到OC工程中报错
- Build service could not start bu
- Could not build the application
- VSCode上 突然不能跑flutter项目 报Could no
- build error: Could not find the
- maven -- 解决“Could not calculate
一、问题
could not build server_names_hash, you should increase server_names_hash_bucket_size: 32
二、问题分析
Nginx默认的域名hash估值是32,当配置域名或二级域名过长时,将出现此问题。
三、解决
http {
server_names_hash_bucket_size 64;
}
注意:hash 最大为:server_names_hash_max_size: 512
网友评论