diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2020-05-23 14:41:08 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-05-23 14:41:08 +0300 |
commit | e0eb261b833dd544adc17d6d810a68c5bd8e6f0c (patch) | |
tree | 0182b3753a9e77ef046b51ded4bf33266b115abe | |
parent | 74564bdd0db974209a4cb2c8b5ff521e174d52e1 (diff) | |
download | nginx-e0eb261b833dd544adc17d6d810a68c5bd8e6f0c.tar.gz nginx-e0eb261b833dd544adc17d6d810a68c5bd8e6f0c.zip |
README: documented Retry, 0-RTT, TLSv1.3 configuration.
-rw-r--r-- | README | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -108,6 +108,18 @@ Experimental QUIC support for nginx quic_active_migration quic_active_connection_id_limit + To enable address validation: + + quic_retry on; + + To enable 0-RTT: + + ssl_early_data on; + + Make sure that TLS 1.3 is configured which is required for QUIC: + + ssl_protocols TLSv1.3; + Two additional variables are available: $quic and $http3. The value of $quic is "quic" if QUIC connection is used, and empty string otherwise. The value of $http3 is a string |