Fixed handling of SIGWINCH/NOACCEPT signal. After first upgrade it was ignored since r4020 (1.1.1, 1.0.9) as ngx_daemonized wasn't set.
diff --git a/src/core/nginx.c b/src/core/nginx.c index 9e00a2d..5de4835 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c
@@ -374,6 +374,10 @@ ngx_daemonized = 1; } + if (ngx_inherited) { + ngx_daemonized = 1; + } + #endif if (ngx_create_pidfile(&ccf->pid, cycle->log) != NGX_OK) {