Nginx 1.12.0 & 1.13.0

Erulezz

Verified User
Joined
Sep 14, 2015
Messages
905
Location
🇳🇱
New mainline version (1.13.0):

Changes with nginx 1.13.0 25 Apr 2017

*) Change: SSL renegotiation is now allowed on backend connections.

*) Feature: the "rcvbuf" and "sndbuf" parameters of the "listen"
directives of the mail proxy and stream modules.

*) Feature: the "return" and "error_page" directives can now be used to
return 308 redirections.
Thanks to Simon Leblanc.

*) Feature: the "TLSv1.3" parameter of the "ssl_protocols" directive.

*) Feature: when logging signals nginx now logs PID of the process which
sent the signal.

*) Bugfix: in memory allocation error handling.

*) Bugfix: if a server in the stream module listened on a wildcard
address, the source address of a response UDP datagram could differ
from the original datagram destination address.

Nginx 1.12.0 stable was released 2 weeks ago.

https://nginx.org/en/download.html
 
Just a short version:

Install nginx mainline per this guide: http://forum.directadmin.com/showthread.php?t=52704 against OpenSSL 1.1.1 (which is not officially released yet):

and nginx -v should show:

Code:
nginx version: nginx/1.13.0
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-18) (GCC)
built with OpenSSL 1.1.1-dev  xx XXX xxxx
TLS SNI support enabled

Update nginx-default.conf:

Code:
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

to

Code:
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
 
Back
Top