]> git.kaiwu.me - nginx.git/commitdiff
QUIC: updated README.
authorVladimir Homutov <vl@nginx.com>
Tue, 7 Dec 2021 13:07:47 +0000 (16:07 +0300)
committerVladimir Homutov <vl@nginx.com>
Tue, 7 Dec 2021 13:07:47 +0000 (16:07 +0300)
The ngx_http_quic_module is merged to ngx_http_v3_module.
The $quic variable no longer exists, it is replaced with $http3 variable.

README

diff --git a/README b/README
index 5fd38cbf20c9fb0fd28b977d26b8c10698b3be19..7ff4c0fb4bc386545c65e10a0f10d52c75206104 100644 (file)
--- a/README
+++ b/README
@@ -84,7 +84,6 @@ Experimental QUIC support for nginx
     following new configuration options:
 
         --with-http_v3_module     - enable QUIC and HTTP/3
-        --with-http_quic_module   - enable QUIC for older HTTP versions
         --with-stream_quic_module - enable QUIC in Stream
 
 3. Configuration
@@ -148,7 +147,7 @@ Example configuration:
     http {
         log_format quic '$remote_addr - $remote_user [$time_local] '
                         '"$request" $status $body_bytes_sent '
-                        '"$http_referer" "$http_user_agent" "$quic"';
+                        '"$http_referer" "$http_user_agent" "$http3"';
 
         access_log logs/access.log quic;