NGINX 1.16.0

Published by

NGINX is a web server which can also be used as a reverse proxy, load balancer, mail proxy, and HTTP cache used on over 400 million websites

NGINX is a web server which can also be used as a reverse proxy, load balancer, mail proxy, and HTTP cache.

NGINX basic features:

Serving static and index files, autoindexing; open file descriptor cache;
Accelerated reverse proxying with caching; load balancing and fault tolerance;
Accelerated support with caching of FastCGI, uwsgi, SCGI, and Memcached servers; load balancing and fault tolerance;
Modular architecture. Filters include gzipping, byte ranges, chunked responses, XSLT, SSI, and image transformation filter. Multiple SSI inclusions within a single page can be processed in parallel if they are handled by proxied or FastCGI/uwsgi/SCGI servers;
SSL and TLS SNI support;
Support for HTTP/2 with weighted and dependency-based prioritization.

Those new to NGINX can find Online Documentation here

Notes for Window users:

The version of NGINX for Windows uses the native Win32 API (not the Cygwin emulation layer). Only the select() connection processing method is currently used, so high performance and scalability should not be expected. Due to this and some other known issues version of NGINX for Windows is considered to be a beta version. At this time, it provides almost the same functionality as a UNIX version of NGINX except for XSLT filter, image filter, GeoIP module, and embedded Perl language.

To install nginx/Windows, download the latest mainline version distribution (1.15.11), since the mainline branch of NGINX contains all known fixes. Then unpack the distribution, go to the nginx-1.15.11 directory, and run nginx. Here is an example for the drive C: root directory:

cd c:\
unzip nginx-1.15.11.zip
cd nginx-1.15.11
start nginx
 Download