MQTT
MQTT
黑虎含珠
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
通过PageSpeed优化网站性能
有优秀前端团队和运维团队的基本上不需要用到PageSpeed这种工具的,在开发和实施阶段就会避免大量的性能问题。PageSpeed更像是一个补漏工具。 PageSpeed具有页面合并请求,压缩内容,优化图像文件等等功能,可以帮助优化网站的性能。 具体的功能点,PageSpeed官方网站提供了一些具体例子。 https://ngxpagespeed.com/ 整个安装过程也非常的原创 2017-05-12 15:04:02 · 3208 阅读 · 0 评论 -
Nginx使用brotli代替gzip
最近几年出现了很多新的压缩算法, brotli是google开源的新的压缩算法之一,我的另外一篇文章做了一下收集整理。 http://blog.csdn.net/chenhaifeng2016/article/details/62040026 本文主要描述Nginx使用brotli代替gzip. 首先下载brotli的nginx模块 cd /usr/local/src git c原创 2017-05-03 11:05:47 · 3541 阅读 · 0 评论 -
nginx ngx_http_mirror_module模块
Nginx 1.13.4版本新增了ngx_http_mirror_module模块。 ngx_http_mirror_module模块适用于这样一种场景,可以把真实请求引流到测试环境。 配置示例 location / { mirror /mirror; proxy_pass http://backend; } location /mirror {原创 2017-08-09 10:08:43 · 2807 阅读 · 0 评论 -
nginx https http2
前提条件 1.编译openssl最新版本 2.生成证书 (本文采用的是let's encrypt的证书) 安装nginx (本文不讨论nginx的性能优化) ./configure --prefix=/usr/local/nginx-1.12.0 --with-http_ssl_module --with-http_v2_module --with-openssl=/usr/loc原创 2017-04-27 00:02:00 · 651 阅读 · 0 评论
分享