comparison README @ 8923:651cc905b7c2 quic

HTTP/3: $http3 variable. A new variable $http3 is added. The variable equals to "h3" for HTTP/3 connections, "hq" for hq connections and is an empty string otherwise. The variable $quic is eliminated. The new variable is similar to $http2 variable.
author Roman Arutyunyan <arut@nginx.com>
date Wed, 01 Dec 2021 11:02:17 +0300
parents be08b858086a
children d6ef13c5fd8e
comparison
equal deleted inserted replaced
8922:be08b858086a 8923:651cc905b7c2
139 http3_max_concurrent_pushes 139 http3_max_concurrent_pushes
140 http3_push 140 http3_push
141 http3_push_preload 141 http3_push_preload
142 http3_hq (requires NGX_HTTP_V3_HQ macro) 142 http3_hq (requires NGX_HTTP_V3_HQ macro)
143 143
144 An additional variable is available: $quic. 144 In http, an additional variable is available: $http3.
145 The value of $http3 is "h3" for HTTP/3 connections,
146 "hq" for hq connections, or an empty string otherwise.
147
148 In stream, an additional variable is available: $quic.
145 The value of $quic is "quic" if QUIC connection is used, 149 The value of $quic is "quic" if QUIC connection is used,
146 or an empty string otherwise. 150 or an empty string otherwise.
147 151
148 Example configuration: 152 Example configuration:
149 153