From 835854520a07adf6e3bedfad486a92cecdcd33ac Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Wed, 1 Dec 2021 11:02:17 +0300 Subject: 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. --- README | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 1ecf46e07..7ade4c34c 100644 --- a/README +++ b/README @@ -141,7 +141,11 @@ Experimental QUIC support for nginx http3_push_preload http3_hq (requires NGX_HTTP_V3_HQ macro) - An additional variable is available: $quic. + In http, an additional variable is available: $http3. + The value of $http3 is "h3" for HTTP/3 connections, + "hq" for hq connections, or an empty string otherwise. + + In stream, an additional variable is available: $quic. The value of $quic is "quic" if QUIC connection is used, or an empty string otherwise. -- cgit