comparison xml/en/docs/http/ngx_http_v2_module.xml @ 1568:61a3285d77aa

Paraphrased the ALPN/NPN requirements note so it makes sense.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 17 Sep 2015 20:50:25 +0300
parents 0ca33afb461b
children 37be36b01d28
comparison
equal deleted inserted replaced
1567:695999bdd4a5 1568:61a3285d77aa
47 47
48 ssl_certificate server.crt; 48 ssl_certificate server.crt;
49 ssl_certificate_key server.key; 49 ssl_certificate_key server.key;
50 } 50 }
51 </example> 51 </example>
52 <note> 52 Note that accepting HTTP/2 connections over TLS requires
53 Note that in order to accept both
54 <link doc="ngx_http_ssl_module.xml">HTTPS</link> and HTTP/2 connections
55 simultaneously on the same port, the
56 <link url="http://www.openssl.org">OpenSSL</link> library used should support
57 the “Application-Layer Protocol Negotiation” (ALPN) TLS extension 53 the “Application-Layer Protocol Negotiation” (ALPN) TLS extension
58 available only since OpenSSL version 1.0.2. 54 support, which is available only since
59 Accepting both types of connections with the 55 <link url="http://www.openssl.org">OpenSSL</link> version 1.0.2.
60 “Next Protocol Negotiation” (NPN) TLS extension available since OpenSSL 56 Using the “Next Protocol Negotiation” (NPN) TLS extension for this purpose
61 version 1.0.1 is possible but not guaranteed. 57 (available since OpenSSL version 1.0.1) is not guaranteed.
62 </note>
63 </para> 58 </para>
64 59
65 </section> 60 </section>
66 61
67 62