博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tengine配置支持http2
阅读量:6519 次
发布时间:2019-06-24

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

1、检测目前tengine编译时候所用模块 nginx -v

2、补充好所需模块
tengine配置支持http2

3、./configure --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --dso-tool-path=/usr/sbin/ --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/lock/subsys/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-http_geoip_module --with-http_degradation_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_sysguard_module --with-openssl=/usr/local/ssl --with-http_concat_module --with-http_lua_module --with-luajit-lib=/usr/lib64/ --with-luajit-inc=/usr/include/luajit-2.0/ --add-module=/tmp/ngx_cache_purge-2.3 --with-http_v2_module --add-module=/tmp/headers-more-nginx-module-master

4、make
5、然后将objs下nginx替换/usr/sbin/nginx
6、在nginx配置中增加listen 443 http2
7、验证方式:1、开发者模式看协议

![](https://s1.51cto.com/images/blog/201803/13/38648af96f95804d3b81241062b38c5d.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=)                                             2、用google的插件  HTTP/2 and SPDY indicator ,右上角有闪电则支持了

8、

转载于:https://blog.51cto.com/10643230/2086133

你可能感兴趣的文章
79. Word Search
查看>>
(2编写网络)自己动手,编写神经网络程序,解决Mnist问题,并网络化部署
查看>>
从实际案例聊聊Java应用的GC优化--转
查看>>
手把手教你实现boost::bind
查看>>
Python中的string模块的学习
查看>>
【转】如何使用分区助手完美迁移系统到SSD固态硬盘?
查看>>
java~lambda表达式让查询更优雅
查看>>
a标签中的javascript:;是什么
查看>>
关于connect: network is unreachable 问题的解决【转】
查看>>
RxSwift源码与模式分析一:基本类
查看>>
.NET MVC5+ Dapper+扩展+微软Unity依赖注入实例
查看>>
IntelliJ IDEA 快捷键整理-from imooc
查看>>
INSTALL_FAILED_USER_RESTRICTED
查看>>
spring的@Transactional注解详细用法
查看>>
git如何合并远程2个分支
查看>>
Identity Server 4 - Hybrid Flow - Claims
查看>>
CSS3 nth 伪类选择器
查看>>
PHP版本VC6与VC9/VC11/VC14、Thread Safe与None-Thread Safe等的区别
查看>>
类的静态成员变量
查看>>
完整部署CentOS7.2+OpenStack+kvm 云平台环境(5)--问题解决
查看>>