主页 > 原创 | 学习笔记 > 编译nginx 1.9.5 启用http2

编译nginx 1.9.5 启用http2

nginx 最新版本 1.9.5 已经支持 http2,需要编译时增加参数 –with-http_v2_module

环境为 ubuntu 14.04 64位

安装依赖

apt-get install nginx-common libxslt1-dev libgd-dev libgeoip-dev libpcre3-dev git

获取nginx代码

# Create temporary work area
cd
mkdir nginx
cd nginx

# Download and extract nginx
wget http://nginx.org/download/nginx-1.9.5.tar.gz
tar xf nginx-1.9.5.tar.gz

# Download and extract OpenSSL
wget https://www.openssl.org/source/openssl-1.0.2d.tar.gz
tar xf openssl-1.0.2d.tar.gz

# Download and extract gzip
wget http://zlib.net/zlib-1.2.8.tar.gz
tar xf zlib-1.2.8.tar.gz

# Delete downloads
rm *.tar.gz

# Download ngx_http_substitutions_filter_module
git clone https://github.com/yaoweibin/ngx_http_substitutions_filter_module

安装编译

cd nginx-1.9.5

./configure \
--with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' \
--with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro' \
--sbin-path=/usr/sbin/nginx \
--prefix=/usr/share/nginx \
--conf-path=/etc/nginx/nginx.conf \
--http-log-path=/var/log/nginx/access.log \
--error-log-path=/var/log/nginx/error.log \
--lock-path=/var/lock/nginx.lock \
--pid-path=/run/nginx.pid \
--http-client-body-temp-path=/var/lib/nginx/body \
--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
--http-proxy-temp-path=/var/lib/nginx/proxy \
--http-scgi-temp-path=/var/lib/nginx/scgi \
--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
--with-debug \
--with-pcre-jit \
--with-ipv6 \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_dav_module \
--with-http_geoip_module \
--with-http_gzip_static_module \
--with-http_image_filter_module \
--with-http_v2_module \
--with-http_sub_module \
--with-http_xslt_module \
--with-mail \
--with-mail_ssl_module \
--with-http_sub_module \
--with-zlib=../zlib-1.2.8 \
--with-openssl=../openssl-1.0.2d \
--add-module=../ngx_http_substitutions_filter_module

make
make install

nginx配置

只需将

listen       443 ssl;

改为

listen       443 ssl http2;

即可。

快速安装脚本

脚本保存在 github

https://github.com/xdtianyu/scripts/blob/master/nginx/upgrade-nginx.sh

下载并运行安装

wget https://github.com/xdtianyu/scripts/raw/master/nginx/upgrade-nginx.sh
chmod +x upgrade-nginx.sh
./upgrade-nginx.sh

Tags: http2 nginx

评论:4

  1. Likol 回复
    2015 年 12 月 21 日 于 下午 6:17

    編譯的系統上裝的openssl 必須是1.0.2以上版本, 否則編譯出來的nginx 不支持 ALPN, 在某些瀏覽器上無法以http2 運作的

    • tianyu 回复
      2015 年 12 月 21 日 于 下午 6:23

      感谢反馈~

  2. Vinvcent 回复
    2016 年 1 月 8 日 于 下午 4:23

    安装好之后用curl访问返回的消息头还是HTTP/1.1是为什么呢?

    • tianyu 回复
      2016 年 1 月 8 日 于 下午 5:20

      你用的什么curl命令呢?有没有增加h2参数或http2参数,curl是否支持HTTP2?

发表评论

邮箱地址不会被公开。 必填项已用*标注