首页 > TAG信息列表 > nghttp2

Curl支持HTTP2

Curl支持HTTP2 一般情况下,都是利用系统的apt-get、yum来进行CURL库的安装。但是,在安装过程中,并支持http2协议。所以,有时候需要重新进行自编译。 curl各个版本的下载地址 https://curl.se/download/ 重新自编译安装curl库 apt-get remove curl apt-get install -y nghttp2

支持HTTP2的cURL——基于Alpine的最小化Docker镜像

 杨润青 译 分布式实验室 cURL(https://curl.haxx.se/)是我喜欢的开源软件之一。虽然cURL的强大常常被认为是理所当然的,但我真心地认为它值得感谢和尊重。如果我们的工具箱失去了curl,那些需要和网络重度交互的人(我们大多数人都是这样的)将会陷入到困境中。curl速度快、体积小,并且和

nghttp2编译引起的gcc升级笔记

序言 公司最近项目的业务需要,需要使用nghttp2这个开源库。所以从github.com上下载了一个release版本的nghttp2,然后通过源码进行编译安装。 编译和编译出错定位与解决 下载源码包: wget https://github.com/nghttp2/nghttp2/releases/download/v1.42.0/nghttp2-1.42.0.tar.xz解

【交叉编译三】nghttp2编译

nghttp2 是一个用 C 实现的 HTTP/2 库,支持 h2c。如下是君正平台的交叉编译内容。 1、下载源码:https://github.com/nghttp2/nghttp2 或者:git clone https://github.com/nghttp2/nghttp2.git 2、执行如下结果 cd nghttp2 autoreconf -i 但是报错如下:主要原因是 没有配置正确ac

php +libcurl+nghttp2 实现高性能微服务架构

1、server端nginx编译时增加参数configure --with-http_v2_module     server {        listen       80 http2;        server_name  localhost;    }编译nghttp2包wget https://github.com/nghttp2/nghttp2/releases/download/v1.40.0/nghttp2-1.40

nghttp2 交叉编译

touch run.sh chmod 755 run.sh mkdir build cd build ../run.sh run.sh #!/bin/bash #cd build ../configure \ --host=aarch64-linux-android \ --build=`dpkg-architecture -qDEB_BUILD_GNU_TYPE` \ --disable-examples \ --disable-threads \ --prefix="/home/

Swoole 安装

1、Swoole依赖安装 hiredis sudo wget https://github.com/redis/hiredis/archive/v0.14.0.tar.gz sudo tar xf v0.14.0.tar.gz cd hiredis-0.14.0/ sudo make sudo make install sudo ldconfig 需要在编译时增加--enable-async-redis来开启此功能 nghttp2 sudo wget https://gith