收藏的博客 -- Nginx+Lua,OpenResty相关资源

简介: 收藏的博客 -- Nginx+Lua,OpenResty相关资源

我个人的Nginx-1.12.2实践:安装,编译与测试(★firecat推荐,针对TCP四层负载均衡★)



一、Nginx

http://nginx.org/ -- 开源版

http://nginx.org/download/ -- 开源版源码下载

https://www.nginx.com/ -- 商业版


http://nginx.org/en/docs/ -- 官方文档


https://www.nginx.com/resources/wiki/modules/index.html -- NGINX 3rd Party Modules


https://goaccess.io/ -- nginx日志分析工具


http://tengine.taobao.org/ -- 阿里巴巴根据nginx修改



二、Lua


http://www.lua.org/


http://luajit.org/


http://www.runoob.com/lua/lua-tutorial.html


https://blog.csdn.net/libaineu2004/article/details/80174987 -- IDE


https://studio.zerobrane.com/doc-luajit-debugging


http://notebook.kulchenko.com/zerobrane/debugging-openresty-nginx-lua-scripts-with-zerobrane-studio



三、Openresty


https://openresty.org/cn/ -- 开源版


https://openresty.com/cn/ -- 商业版

https://github.com/openresty -- github


http://blog.sina.com.cn/openresty -- 创始人,章亦春blog


https://github.com/agentzh -- 创始人,章亦春gitHub


OpenResty 最佳实践


http://wiki.jikexueyuan.com/project/openresty/


https://moonbingbing.gitbooks.io/openresty-best-practices/content/index.html

https://legacy.gitbook.com/book/moonbingbing/openresty-best-practices/details


https://github.com/moonbingbing/openresty-best-practices


https://legacy.gitbook.com/book/openresty/programming-openresty/details


Openresty最佳案例 | 汇总


跟我学Nginx+Lua开发  --- 《亿级流量网站架构核心技术》作者,http://jinnianshilongnian.iteye.com/category/333854



四、Nginx源码学习


https://github.com/chronolaw/annotated_nginx -- 罗剑锋,带注释的nginx


https://github.com/chronolaw/annotated_nginx/blob/master/diagrams/readme.md -- UML


https://github.com/jianfengye/nginx-1.0.14_comment


https://github.com/its-tech/nginx-1.14.0-research


https://www.taohui.pub/  -- 陶辉,《深入理解Nginx:模块开发与架构解析(第2版)》作者


https://blog.csdn.net/russell_tao -- 陶辉,《深入理解Nginx:模块开发与架构解析(第2版)》作者



五、基于openresty 的几个开发框架


1. kong

  api  gateway

  Github:   https://github.com/Mashape/kong

2. Lapis

 web 开发框架

 Github:    https://github.com/leafo/lapis

3. Vanilla香草

  web 开发框架,Vanilla是一个基于OpenResty开发的高性能Web应用开发框架,Vanilla存在的意义在于降低基于OpenResty开发高性能后端服务的门槛,我们希望能探索一种快乐、便捷的高性能后端服务开发模式。http://idevz.github.io/vanilla/

  Github:   https://github.com/idevz/vanilla

4. Lor


  web 开发框架 http://lor.sumory.com/


  Lor是一个运行在OpenResty上的基于Lua编写的Web框架.路由采用Sinatra风格,结构清晰,易于编码和维护.API借鉴了Express的思路和设计,Node.js跨界开发者可以很快上手.支持多种路由,路由可分组,路由匹配支持正则模式.支持middleware机制,可在任意路由上挂载中间件.可作为HTTP API Server,也可用于构建传统的Web应用.


  Github:  https://github.com/sumory/lor

5. orange


api  gateway。


http://orange.sumory.com/


https://github.com/orlabs/orange


Orange是一个基于OpenResty的API网关。除Nginx的基本功能外,它还可用于API监控、访问控制(鉴权、WAF)、流量筛选、访问限速、AB测试、动态分流等。它有以下特性:


提供了一套默认的Dashboard用于动态管理各种功能和配置

提供了API接口用于实现第三方服务(如个性化运维需求、第三方Dashboard等)

可根据规范编写自定义插件扩展Orange功能

Github:   https://github.com/sumory/orange


https://github.com/orlabs/orange

6. nana

 https://github.com/horan-geeker/nana

  这是一个非常易用简单的 web api 框架,采取了一些较好的 php 框架的设计

  主要目录结构分为 lib(公共方法),model(数据库相关),controller(由 nginx location 指向的 lua文件也就是控制器)

7. lua-resty-yii

 https://github.com/hylun/lua-resty-yii


  由于工作中主要是用到PHP进行开发,比较喜欢Yii2开发框架,于是动手自己参考YII实现了一个基于OpenResty的仿Yii的web框架



六、第三方模块


json,https://github.com/openresty/rds-json-nginx-module


mysql,https://github.com/openresty/drizzle-nginx-module


redis,https://github.com/openresty/redis2-nginx-module


MongoDB,https://github.com/bigplum/lua-resty-mongol


nginx安装mysql和json模块: http://zixuephp.net/article-459.html


nginx安装redis模块: http://zixuephp.net/article-460.html



七、竞品分析,lighttpd


http://www.lighttpd.net/


https://github.com/lighttpd -- cmake



----


http://tengine.taobao.org/

https://github.com/topcpporg/nginx_vs

Nginx开发从入门到精通

【nginx】关于Nginx的一些优化(突破十万并发)

修改 Nginx 进程最大可打开文件数(worker_processes和worker_connections)

Nginx反向代理支持长连接

Nginx + Keepalived 构建高可用的负载层

root@localhost ~]# cd /usr/local/openresty
[root@localhost openresty]# bin/openresty -c hello.conf
[root@localhost openresty]# bin/openresty -s stop
[root@localhost openresty]# bin/openresty -v
nginx version: openresty/1.13.6.2
相关文章
|
6月前
|
存储 缓存 Java
Openresty(lua+nginx)-Guava-Redis做多级缓存
Openresty(lua+nginx)-Guava-Redis做多级缓存
73 1
|
3月前
|
应用服务中间件 nginx
[nginx]编译安装openresty
[nginx]编译安装openresty
|
4月前
|
Ubuntu 应用服务中间件 Linux
Linux学习之Ubuntu 20中OpenResty的nginx目录里内容和配置文件
总的来说,OpenResty的Nginx配置文件是一个强大的工具,它允许你以非常灵活的方式定义你的Web服务的行为。
83 2
|
3月前
|
应用服务中间件 nginx
[nginx]lua读取请求体
[nginx]lua读取请求体
|
3月前
|
缓存 应用服务中间件 nginx
[nginx]lua控制响应头
[nginx]lua控制响应头
106 0
|
3月前
|
应用服务中间件 API nginx
[nginx]lua控制请求头
[nginx]lua控制请求头
|
5月前
|
JavaScript Ubuntu 应用服务中间件
nginx扩展 OpenResty 实现防cc攻击教程
使用OpenResty实现CC攻击防护,包括两个主要步骤:限制请求速度和JS验证。首先,安装依赖(RHEL/CentOS需安装readline-devel, pcre-devel, openssl-devel,Ubuntu需安装libreadline-dev等)。然后,安装Luajit和OpenResty。在Nginx配置中,创建`lua`共享字典并设置`content_by_lua_file`调用lua脚本。lua脚本检查请求频率,超过限制则返回503,否则增加计数。同时,通过JS验证,生成随机码并重定向用户,用户需携带正确验证码请求才能访问。
137 0
|
6月前
|
网络协议 应用服务中间件 nginx
nginx 302 301 设置 url 转跳 nginx 资源重定向 nginx tcp 和 http 转发
nginx 代理后端网站,和 网站资源目录重定向到其他连接地址
209 3
|
6月前
|
Ubuntu 应用服务中间件 Linux
蓝易云 - Linux学习之Ubuntu20中OpenResty的nginx目录里内容和配置文件
你可以根据你的需要修改这个配置文件,例如增加新的服务器块,位置块,修改监听的端口等。修改完配置文件后,你需要重载Nginx配置,可以使用 `/usr/local/openresty/nginx/sbin/nginx -s reload`命令来实现。
72 0
|
6月前
|
前端开发 应用服务中间件 nginx
使用nginx-http-concat资源请求合并功能 优化网站响应
使用nginx-http-concat资源请求合并功能 优化网站响应
75 0