|
6 | 6 | ======
|
7 | 7 | ## Nginx 教程 (Nginx tutorial)
|
8 | 8 |
|
9 |
| -###### 基础 |
| 9 | +###### :one: 基础 |
10 | 10 | * [Nginx编译安装](/Nginx/nginx-install.md)
|
11 | 11 | * [Nginx.conf详解](/Nginx/nginx-base-config.md)
|
12 | 12 | * [Location 详解](/docs/Nginx/location-detail.md)
|
|
22 | 22 | * [nginx 并发数问题思考:worker_connections,worker_processes与 max clients](http://liuqunying.blog.51cto.com/3984207/1420556?utm_source=tuicool)
|
23 | 23 | * [如何在工作中提高Ngixn服务器性能?达到高效](https://juejin.im/post/5adb45e96fb9a07ab773c767?utm_source=gold_browser_extension)
|
24 | 24 |
|
25 |
| -###### 案例 |
| 25 | +###### :two: 案例 |
26 | 26 | * [Nginx 同一个IP上配置多个HTTPS主机](/Nginx/more-domain-config.md)
|
27 | 27 | * [Nginx 如何配置一个安全的HTTPS网站服务器](http://www.cnblogs.com/tinywan/p/7542629.html)
|
28 | 28 | * [Nginx 配置启用 HTTP/2](http://www.cnblogs.com/tinywan/p/7860774.html)
|
29 | 29 | * [申请Let's Encrypt通配符HTTPS证书](https://www.cnblogs.com/tinywan/p/8573169.html)
|
30 |
| -###### 扩展模块 (Third-party module) |
| 30 | +###### :three: 模块 |
31 | 31 | * [nginx-vod-module](http://www.cnblogs.com/tinywan/p/7879559.html)
|
32 | 32 | * [nginx-module-vts](http://www.cnblogs.com/tinywan/p/7872366.html)
|
33 | 33 | * [ngx_cache_purge](/Nginx/Nginx-Web/Nginx-8-proxy_cache.md)
|
34 | 34 | * [lua-nginx-module](http://www.cnblogs.com/tinywan/p/6538006.html)
|
35 | 35 | * [nginx-rtmp-module](http://www.cnblogs.com/tinywan/p/6639360.html)
|
36 | 36 |
|
37 |
| -###### 好文 |
| 37 | +###### :four: 好文 |
38 | 38 |
|
39 | 39 | * [Nginx入门到实战(1)基础篇](https://segmentfault.com/a/1190000014893012)
|
40 | 40 | * [Nginx入门到实战(2) 场景实现篇](https://mp.weixin.qq.com/s/RDIhU2pd37ecmKjgCtiZGQ)
|
|
44 | 44 | * [关于一些对location认识的误区](http://www.cnblogs.com/lidabo/p/4169396.html)
|
45 | 45 | * [location总结及rewrite规则写法](https://segmentfault.com/a/1190000002797606)
|
46 | 46 | * [How to Compile Nginx From Source on Ubuntu 16.04](https://www.vultr.com/docs/how-to-compile-nginx-from-source-on-ubuntu-16-04)
|
| 47 | + |
| 48 | +###### :five: 流媒体 |
47 | 49 | * [Setup Nginx on Ubuntu to Stream Live HLS Video](https://www.vultr.com/docs/setup-nginx-on-ubuntu-to-stream-live-hls-video)
|
48 | 50 | * [Setup Nginx-RTMP on Ubuntu 14.04](https://www.vultr.com/docs/setup-nginx-rtmp-on-ubuntu-14-04)
|
| 51 | +* [利用nginx搭建RTMP视频点播、直播、HLS服务器](https://blog.csdn.net/kingroc/article/details/50839994) |
| 52 | +* [实时流(直播流)播放、上墙(大屏播放)解决方案](https://www.cnblogs.com/xiaozhi_5638/p/8664841.html) |
| 53 | +* [Nginx配置Rtmp支持Hls的直播和点播功能](/Nginx-Rtmp/HLS-live-vod.md) |
| 54 | +* [HLS视频直播和点播的Nginx的Location的配置信息(成功)](/Nginx-Rtmp/HLS-live-vod-locatiuon-config.md) |
49 | 55 |
|
50 |
| -###### PHP 相关 |
| 56 | +###### :six: PHP 相关 |
51 | 57 | * [Nginx和PHP-FPM的开机自动启动脚本](/PHP/PHP-FPM/config.md)
|
52 | 58 | * [php-fpm/www.conf 的配置 ](/PHP/PHP-FPM/config.md)
|
53 | 59 | * [深入剖析 Web 服务器与 PHP 应用的通信机制 - 掌握 CGI 和 FastCGI 协议的运行原理](https://mp.weixin.qq.com/s/6Kyfvc_N7PhBtFPstgt3MA)
|
|
58 | 64 | * [lua中self_indes详解](/Lua-Script/oop/self__index.md)
|
59 | 65 |
|
60 | 66 | ## Redis 教程
|
| 67 | + |
| 68 | +###### :one: 基础 |
61 | 69 | * [Redis 安装](/Redis/redis-install.md)
|
62 | 70 | * [Redis 配置详解](/Redis/redis-config.md)
|
63 | 71 | * [Redis 基础知识](#Redis_base_knowledge)
|
64 | 72 | * [Redis 开发与运维](#Redis-DevOps)
|
65 | 73 | * [Redis 执行Lua脚本基本用法](/Redis/redis-lua.md)
|
66 | 74 | * [Redis 漏洞如何防止被黑客攻击](/Redis/redis-safety.md)
|
67 |
| -###### PHP 相关 |
| 75 | + |
| 76 | +###### :two: PHP 相关 |
68 | 77 | * [PHP脚本运行Redis](#PHP_Run_Redis)
|
69 | 78 | * [PHP 脚本执行一个Redis 订阅功能,用于监听键过期事件,返回一个回调,API接受改事件](/Redis-PHP/Php-Run-Redis-psubscribe/nohupRedisNotify.php)
|
70 | 79 | * [阿里云Redis开发规范](https://yq.aliyun.com/articles/531067)
|
71 | 80 | * [高可用Redis服务架构分析与搭建](https://mp.weixin.qq.com/s/DA4uhPULaXI-KDKwvLzb8Q)
|
72 | 81 | * [如何轻松搭建电商秒杀系统](https://yq.aliyun.com/articles/277885)
|
73 | 82 |
|
74 | 83 | ## Openresty 教程
|
| 84 | + |
| 85 | +###### :one: 基础 |
75 | 86 | * [安装默认配置信息](/Openresty/openresty-basic.md)
|
| 87 | +* [OpenResty 最佳实践](https://moonbingbing.gitbooks.io/openresty-best-practices/content/index.html) |
76 | 88 | * [如何编译一个高性能 OpenResty](https://yq.aliyun.com/articles/228399)
|
77 | 89 | * [ngx_lua APi 方法和常量](/Openresty/openresty-api.md)
|
78 | 90 | * [ngx_lua 扩展模块学习](/Openresty/openresty-resty-module.md)
|
79 | 91 | * [lua-resty-upstream-healthcheck使用](/Openresty/lua-resty-upstream-healthcheck.md)
|
80 | 92 | * [Openresty与Nginx_RTMP](/Openresty/openresty-rtmp.md)
|
81 | 93 | * [自己写的一个简单项目lua_project_v0.01](https://github.com/Tinywan/lua_project_v0.01)
|
| 94 | +* [如何在openresty里解析域名](http://www.jkeabc.com/181587.html) |
| 95 | +* [谈谈基于 OpenResty 的接口网关设计](https://www.zybuluo.com/yishuailuo/note/844059) |
| 96 | +* [跟我学OpenResty(Nginx+Lua)开发](http://jinnianshilongnian.iteye.com/blog/2190344) |
| 97 | +* [openresty 专栏](https://blog.csdn.net/qq362228416/article/category/6558114) |
| 98 | +* [openresty 视频](http://i.youku.com/i/UMTM2NTgyMDEyMA==/videos?q=openresty) |
| 99 | +* [模仿京东使用Openresty+Redis做读服务](https://my.oschina.net/zjzhai/blog/759719) |
82 | 100 |
|
83 | 101 | ## Linux 教程
|
84 | 102 | * [Linux 基础知识](/Linux/linux-basic.md)
|
85 | 103 | ###### Systemd 入门教程
|
86 | 104 | * [命令篇](http://www.ruanyifeng.com/blog/2016/03/systemd-tutorial-commands.html)
|
87 | 105 | * [实战篇](http://www.ruanyifeng.com/blog/2016/03/systemd-tutorial-part-two.html)
|
88 | 106 | * [定时器教程](http://www.ruanyifeng.com/blog/2016/03/systemd-tutorial-part-two.html)
|
| 107 | + |
89 | 108 | ## Shell 教程
|
90 | 109 | * [编写快速安全Bash脚本的建议](https://www.oschina.net/translate/bash-scripting-quirks-safety-tips)
|
91 | 110 | * [写好shell脚本的13个技巧](https://mp.weixin.qq.com/s/f3xDHZ7dCQr7sHJ9KDvuyQ)
|
92 | 111 | * [shell脚本实现分日志级别记录日志](/Nginx-Rtmp/Shell_Log.sh)
|
93 | 112 | * [Nginx日志定时备份和删除](/Nginx-Rtmp/Shell_Nginx_Log_cut.sh)
|
94 | 113 | * [SHELL脚本小技巧](/Nginx-Rtmp/Shell_script.md)
|
95 | 114 | * [Mysql 自动备份脚本安全加锁机制](/Nginx-Rtmp/backup_mysql.sh)
|
| 115 | + |
96 | 116 | ###### PHP 相关
|
97 | 117 | * [PHP和Shell 脚本如何很好的搭配](/PHP/php-shell_run.md)
|
98 | 118 |
|
99 |
| -## 流媒体教程 |
100 |
| -* [Nginx配置Rtmp支持Hls的直播和点播功能](/Nginx-Rtmp/HLS-live-vod.md) |
101 |
| -* [HLS视频直播和点播的Nginx的Location的配置信息(成功)](/Nginx-Rtmp/HLS-live-vod-locatiuon-config.md) |
102 |
| - |
103 | 119 | ## Lua-Ngx
|
104 | 120 | 
|
105 | 121 |
|
0 commit comments