尝鲜HTTP/3

这两天浏览技术类资讯,偶然发现Nginx发布的主线版本1.25.0已加入了HTTP/3协议的支持,之前通过quic分支开发支持的HTTP/3合入主线版本,标志着Nginx正式进入HTTP/3时代。

Nginx-HTTP/3

其实在去年的6月6日,IETF(互联网工程任务小组)就已经正式发布了HTTP/3的RFC,至此眼下时机已成熟,因而一时兴起,不觉手痒想尝尝鲜。

1
2
3
4
5
6
7
8
9
./configure
--prefix=/usr/local/webserver/nginx
--with-http_stub_status_module
--with-http_ssl_module
--with-http_v2_module
--with-http_v3_module
--with-pcre=/usr/local/src/pcre-8.45
--with-cc-opt="-I../boringssl/include"
--with-ld-opt="-L../boringssl/build/ssl -L../boringssl/build/crypto"