comparison README @ 8402:af22b60a905b quic

README: documented Retry, 0-RTT, TLSv1.3 configuration.
author Sergey Kandaurov <pluknet@nginx.com>
date Sat, 23 May 2020 14:41:08 +0300
parents 94c06fe6e159
children c7d1b500bd0a
comparison
equal deleted inserted replaced
8401:d3aa54242c37 8402:af22b60a905b
106 quic_initial_max_streams_uni 106 quic_initial_max_streams_uni
107 quic_ack_delay_exponent 107 quic_ack_delay_exponent
108 quic_active_migration 108 quic_active_migration
109 quic_active_connection_id_limit 109 quic_active_connection_id_limit
110 110
111 To enable address validation:
112
113 quic_retry on;
114
115 To enable 0-RTT:
116
117 ssl_early_data on;
118
119 Make sure that TLS 1.3 is configured which is required for QUIC:
120
121 ssl_protocols TLSv1.3;
122
111 Two additional variables are available: $quic and $http3. 123 Two additional variables are available: $quic and $http3.
112 The value of $quic is "quic" if QUIC connection is used, 124 The value of $quic is "quic" if QUIC connection is used,
113 and empty string otherwise. The value of $http3 is a string 125 and empty string otherwise. The value of $http3 is a string
114 "h3-xx" where "xx" is the supported draft number. 126 "h3-xx" where "xx" is the supported draft number.
115 127