本文共 1971 字,大约阅读时间需要 6 分钟。
记一次全面升级网站HTTP
HTTP---HTTPS---HTTP2nginx1.6---1.12openssl1.0.1---1.0.2HTTP2必须是openssl1.0.2
open1.0.2也要对应升级nginx1.12升级openssl1.0.2
下载最新版wget解压安装
tar zxvf openssl-1.0.2n.tar.gz cd openssl-1.0.2n./config
make -j 4Makemake install替换旧版本文件
mv /usr/bin/openssl /usr/bin/openssl.bakmv /usr/include/openssl /usr/include/openssl.bakln -s /usr/local/ssl/bin/openssl /usr/bin/opensslln -s /usr/local/ssl/include/openssl /usr/include/opensslecho “/usr/local/ssl/lib” >> /etc/ld.so.confldconfig -v查看最后版本
openssl version -a升级nginx1.12
下载1.12wget解压安装
tar -zxvf nginx-1.12.2.tar.gzcd nginx-1.12.2./configure --prefix=/usr/local/nginx --with-openssl=/root/openssl-1.0.2n --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_auth_request_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-mail --with-mail_ssl_module --with-stream --with-stream_ssl_module --with-stream_realip_module --with-stream_ssl_preread_module --with-threads --user=nginx --group=tasly
刚才装的openssl1.0.2记得指定目录,需要加上模块我这里用户属组跟大家不一样,记得替换make -j 4
make install替换文件,检查版本
cp objs/nginx /usr/local/nginx/sbin/nginx/usr/local/nginx/sbin/nginx -t最后升级HTTP2,给大家贴出来我的一点配置
上面是80跳转444下面是HTTPS 和 HTTP2 的配置server { listen 80;server_name 345345.com;rewrite ^(.*)$ https://$server_name$1 permanent;}server { listen 443 ssl http2;server_name 345345.com;ssl on;ssl_certificate /home/nginx/3453.pem;ssl_certificate_key /home/nginx/3453.key;ssl_session_timeout 5m;ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;ssl_protocols TLSv1 TLSv1.1 TLSv1.2;ssl_prefer_server_ciphers on;
最后说一下HTTP2的使用感,确实如2的描述一样,加载和打开的速度会变快
但是不要想太多,没有宣传的那么夸张,但还是保留了HTTP2转载地址:http://ohtpo.baihongyu.com/