博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
升级HTTP2、nginx1.12、openssl1.0.2
阅读量:6625 次
发布时间:2019-06-25

本文共 1971 字,大约阅读时间需要 6 分钟。

记一次全面升级网站HTTP

HTTP---HTTPS---HTTP2
nginx1.6---1.12
openssl1.0.1---1.0.2

HTTP2必须是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 4
Make
make install

替换旧版本文件

mv /usr/bin/openssl /usr/bin/openssl.bak
mv /usr/include/openssl /usr/include/openssl.bak
ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl
ln -s /usr/local/ssl/include/openssl /usr/include/openssl
echo “/usr/local/ssl/lib” >> /etc/ld.so.conf
ldconfig -v

查看最后版本

openssl version -a

升级nginx1.12

下载1.12
wget

解压安装

tar -zxvf nginx-1.12.2.tar.gz
cd 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/

你可能感兴趣的文章
html5播放mp4视频代码
查看>>
032_nginx配置文件安全下载
查看>>
Linux下tomcat修改成的80端口无法访问
查看>>
Kubernetes 集群日志管理 - 每天5分钟玩转 Docker 容器技术(180)
查看>>
redis实现对账(集合比较)功能
查看>>
为了好好看球,学霸们用深度学习重建整个比赛3D全息图
查看>>
浅谈持续集成
查看>>
【ZH奶酪】如何用textgenrnn处理中文
查看>>
CentOS双机中Docker下安装Mysql并配置互为主从模式
查看>>
OkHttp3源码详解(六) Okhttp任务队列工作原理
查看>>
这样做,轻松在Word中使用MathType
查看>>
VS Code非英语版本连接TFS错误解决方案
查看>>
angular5中使用jsonp请求页面
查看>>
sql in not in 案例用 exists not exists 代替
查看>>
使用newtonjson解决Json日期格式问题
查看>>
WEB前端资源代码:学习篇
查看>>
Nginx安装及配置详解【转】
查看>>
vue2.0 :style :class样式设置
查看>>
测不准原理主要指向微观
查看>>
排序算法java版,速度排行:冒泡排序、简单选择排序、直接插入排序、折半插入排序、希尔排序、堆排序、归并排序、快速排序...
查看>>