diff -Naur nginx.orig/src/http/ngx_http_core_module.c nginx/src/http/ngx_http_core_module.c --- nginx.orig/src/http/ngx_http_core_module.c 2008-01-10 15:04:03 +0200 +++ nginx/src/http/ngx_http_core_module.c 2008-01-10 15:19:23 +0200 @@ -2379,7 +2379,11 @@ lcf->recursive_error_pages = NGX_CONF_UNSET; lcf->server_tokens = NGX_CONF_UNSET; lcf->types_hash_max_size = NGX_CONF_UNSET_UINT; - lcf->types_hash_bucket_size = NGX_CONF_UNSET_UINT; + /* [emerg] $pid#0: could not build the types_hash, + * you should increase types_hash_bucket_size: 32 */ + /* thus this band-aid */ + /* lcf->types_hash_bucket_size = NGX_CONF_UNSET_UINT; */ + lcf->types_hash_bucket_size = 64; return lcf; }