From 175001a8d92e19ca0e65acc120d51389984588be Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 9 Jan 2017 16:09:30 +0900 Subject: [PATCH] Add migration section from nghttpx v1.18.x --- doc/sources/nghttpx-howto.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/doc/sources/nghttpx-howto.rst b/doc/sources/nghttpx-howto.rst index c1f41142..e4b8aeb6 100644 --- a/doc/sources/nghttpx-howto.rst +++ b/doc/sources/nghttpx-howto.rst @@ -370,6 +370,22 @@ parameter in :option:`--backend` option, like so: nghttpx will cache resolved addresses for certain period of time. To change this cache period, use :option:`--dns-cache-timeout`. +Migration from nghttpx v1.18.x or earlier +----------------------------------------- + +As of nghttpx v1.19.0, :option:`--ciphers` option only changes cipher +list for frontend TLS connection. In order to change cipher list for +backend connection, use :option:`--client-ciphers` option. + +Similarly, :option:`--no-http2-cipher-black-list` option only disables +HTTP/2 cipher black list for frontend connection. In order to disable +HTTP/2 cipher black list for backend connection, use +:option:`--client-no-http2-cipher-black-list` option. + +``--accept-proxy-protocol`` option was deprecated. Instead, use +``proxyproto`` parameter in :option:`--frontend` option to enable +PROXY protocol support per frontend. + Migration from nghttpx v1.8.0 or earlier ----------------------------------------