Make Be BackEnd
[Nginx] could not build server_names_hash, you should increase server_names_hash_bucket_size: 64 (2) 본문
Error
[Nginx] could not build server_names_hash, you should increase server_names_hash_bucket_size: 64 (2)
Initsave 2024. 6. 19. 12:06
현상
Nginx 환경 설정 도중에 일어난 에러
원인
server_names_hash_bucket_size: 64 , 서버명이 길이 때문에 일어난 에러이다
해결
server_names_hash_bucket_size 128로 변경
$ sudo vi /etc/nginx/nginx.conf
http {
.....
access_log ~~~~;
server_names_hash_bucket_size 128;
.....
}
