You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openresty/util
spacewander cf7516fcbc optimize: added an NGINX core patch to ensure unused listening fds are closed when 'reuseport' is used.
When `reuseport` is enabled in the `listen` directive, Nginx will create
a listening fd for each worker process in the master process.

These fds will be inherited by the worker processes, but most of them
are unused. For example, considering we have 32 listening ip:port
configurations and 64 worker processes, each worker process will inherit
2048 (32 * 64) listening fds, but only 32 fds are used. By closing the
unused fds, this change could save up to 2016 (32 * 63) fds in a worker
process.

It doesn't affect the listening socket, since there is only one used fd
which associates to the socket with or without this change.

Co-authored-by: Thibault Charbonnier <thibaultcha@me.com>
6 years ago
..
build-win32.sh bugfix: added an openssl patch to fix the parallel build regression in openssl 1.1.0j. 6 years ago
configure feature: ./configure: added new option --with-luajit-ldflags=OPTS for specifying custom luajit linker flags. 6 years ago
dist-check fixed bugs in dist-check. 6 years ago
fix-tests renamed ngx_openresty to openresty. 9 years ago
get-tarball util/mirror-tarballs: ensure we use https and enable certificate check. thanks Ivan Babrou for the reminder in #144. 9 years ago
import-model.pl various fixes of the blog demo. 15 years ago
install util/install: rm the target file before overwriting to prevent running process from crashing. 11 years ago
mirror-tarballs optimize: added an NGINX core patch to ensure unused listening fds are closed when 'reuseport' is used. 6 years ago
package-nginx.sh upgraded the nginx core to 1.15.6. 6 years ago
package-win32.sh feature: added 64-bit windows building/packaging support using the MSYS2/MinGW toolchain. 7 years ago
upgrade-patches.pl initial work for migrating to the 1.0.8.1 release; applied the variable-header-ignore-no-hash patch. 14 years ago
ver upgraded the nginx core to 1.17.1. 6 years ago
ver-ge added patches for nginx 1.3.4. 13 years ago