instead of -1. This is the same value as the one used in the cgi sapi.
opcode operands into a separate literal table. (Dmitry)
- Changed session.entropy_file to default to /dev/urandom or /dev/arandom if
either is present at compile time. (Rasmus)
+- Changed listen.backlog in the FPM configuration file to default to 128
+ instead of -1 (fat)
- Improved CLI Interactive readline shell (Johannes)
. Added cli.pager ini setting to set a pager for output.
}
memset(wp->config, 0, sizeof(struct fpm_worker_pool_config_s));
- wp->config->listen_backlog = -1;
+ wp->config->listen_backlog = 128;
if (!fpm_worker_all_pools) {
fpm_worker_all_pools = wp;
; Note: This value is mandatory.
listen = 127.0.0.1:9000
-; Set listen(2) backlog. A value of '-1' means unlimited.
-; Default Value: -1
-;listen.backlog = -1
+; Set listen(2) backlog.
+; Default Value: 128
+;listen.backlog = 128
; List of ipv4 addresses of FastCGI clients which are allowed to connect.
; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original