nghttpx: Set initial backlog to 512

This commit is contained in:
Tatsuhiro Tsujikawa 2015-01-14 21:24:12 +09:00
parent f004361ef2
commit 8fe093de1d
1 changed files with 1 additions and 1 deletions

View File

@ -696,7 +696,7 @@ void fill_default_config() {
mod_config()->conf_path = strcopy("/etc/nghttpx/nghttpx.conf");
mod_config()->syslog_facility = LOG_DAEMON;
// Default accept() backlog
mod_config()->backlog = SOMAXCONN;
mod_config()->backlog = 512;
mod_config()->ciphers = nullptr;
mod_config()->http2_proxy = false;
mod_config()->http2_bridge = false;