diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2022-01-13 16:56:07 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2022-01-13 16:56:07 +0300 |
commit | 2f28342e088b61e1605391ada79db703f047c5f2 (patch) | |
tree | 46d013b09ef20b288f0697bd3738ee03fcde8d9a | |
parent | bd4a26c164bdc8a5707827915f4d16cd7ff35891 (diff) | |
download | nginx-2f28342e088b61e1605391ada79db703f047c5f2.tar.gz nginx-2f28342e088b61e1605391ada79db703f047c5f2.zip |
README: documented QuicTLS support.
-rw-r--r-- | README | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -74,12 +74,18 @@ Experimental QUIC support for nginx $ hg clone -b quic https://hg.nginx.org/nginx-quic $ cd nginx-quic - $ ./auto/configure --with-debug --with-http_v3_module \ - --with-cc-opt="-I../boringssl/include" \ - --with-ld-opt="-L../boringssl/build/ssl \ + $ ./auto/configure --with-debug --with-http_v3_module \ + --with-cc-opt="-I../boringssl/include" \ + --with-ld-opt="-L../boringssl/build/ssl \ -L../boringssl/build/crypto" $ make + Alternatively, nginx can be configured with QuicTLS [9] + + $ ./auto/configure --with-debug --with-http_v3_module \ + --with-cc-opt="-I../quictls/build/include" \ + --with-ld-opt="-L../quictls/build/lib" + When configuring nginx, you can enable QUIC and HTTP/3 using the following new configuration options: @@ -252,3 +258,4 @@ Example configuration: [6] https://nginx.org/en/docs/http/ngx_http_core_module.html#listen [7] https://nginx.org/en/docs/debugging_log.html [8] http://vger.kernel.org/lpc_net2018_talks/willemdebruijn-lpc2018-udpgso-paper-DRAFT-1.pdf + [9] https://github.com/quictls/openssl |