在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
openresty 有点不多说,网上各种介绍,先安装吧。 官方操作在此,http://openresty.org/cn/installation.html,
./configure然后在进入
默认, 您可以指定各种选项,比如
试着使用 Prepare directory layoutWe first create a separate directory for our experiments. You can use an arbitrary directory. Here for simplicity, we just use
Note that we've also created the Prepare the nginx.conf config fileCreate a simple plain text file named
If you're familiar with Nginx configuration, it should look very familiar to you. OpenResty is just an enhanced version of Nginx by means of addon modules anyway. You can take advantage of all the exisitng goodies in the Nginx world. Nginx serverAssuming you have installed OpenResty into
Then we start the nginx server with our config file this way:
Error messages will go to the stderr device or the default error log files Access our HelloWorld web serviceWe can use curl to access our new web service that says HelloWorld:
If everything is okay, we should get the output
You can surely point your favorite web browser to the location Test performanceSee Benchmark for details. Where to go from hereView the documentation of each component at the Components page and find Nginx related stuff on the Nginx Wiki site. 1、创建目录/usr/servers,以后我们把所有软件安装在此目录
2、安装依赖(我的环境是ubuntu,可以使用如下命令安装,其他的可以参考openresty安装步骤)
3、下载ngx_openresty-1.7.7.2.tar.gz并解压
ngx_openresty-1.7.7.2/bundle目录里存放着nginx核心和很多第三方模块,比如有我们需要的Lua和LuaJIT。
3、安装LuaJIT
4、下载ngx_cache_purge模块,该模块用于清理nginx缓存
5、下载nginx_upstream_check_module模块,该模块用于ustream健康检查
6、安装ngx_openresty
--with*** 安装一些内置/集成的模块 --with-http_realip_module 取用户真实ip模块 -with-pcre Perl兼容的达式模块 --with-luajit 集成luajit模块
--add-module 添加自定义的第三方模块,如此次的ngx_che_purge
8、到/usr/servers目录下
会发现多出来了如下目录,说明安装成功 /usr/servers/luajit :luajit环境,luajit类似于java的jit,即即时编译,lua是一种解释语言,通过luajit可以即时编译lua代码到机器代码,得到很好的性能; /usr/servers/lualib:要使用的lua库,里边提供了一些默认的lua库,如redis,json库等,也可以把一些自己开发的或第三方的放在这; /usr/servers/nginx :安装的nginx;
通过/usr/servers/nginx/sbin/nginx -V 查看nginx版本和安装的模块
7、启动nginx /usr/servers/nginx/sbin/nginx
接下来该配置nginx+lua开发环境了
配置环境配置及Nginx HttpLuaModule文档在可以查看http://wiki.nginx.org/HttpLuaModule。
1、编辑nginx.conf配置文件
2、在http部分添加如下配置
3、为了方便开发我们在/usr/servers/nginx/conf目录下创建一个lua.conf
4、在nginx.conf中的http部分添加include lua.conf包含此文件片段
5、测试是否正常
如果显示如下内容说明配置成功 nginx: the configuration file /usr/servers/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/servers/nginx/conf/nginx.conf test is successful
HelloWorld1、在lua.conf中server部分添加如下配置
2、测试配置是否正确
3、重启nginx
4、访问如http://192.168.1.6/lua(自己的机器根据实际情况换ip),可以看到如下内容 hello world
5、lua代码文件 我们把lua代码放在nginx配置中会随着lua的代码的增加导致配置文件太长不好维护,因此我们应该把lua代码移到外部文件中存储。
然后lua.conf修改为
此处conf/lua/test.lua也可以使用绝对路径/usr/servers/nginx/conf/lua/test.lua。
6、lua_code_cache 默认情况下lua_code_cache 是开启的,即缓存lua代码,即每次lua代码变更必须reload nginx才生效,如果在开发阶段可以通过lua_code_cache off;关闭缓存,这样调试时每次修改lua代码不需要reload nginx;但是正式环境一定记得开启缓存。
开启后reload nginx会看到如下报警 nginx: [alert] lua_code_cache is off; this will hurt performance in /usr/servers/nginx/conf/lua.conf:8
7、错误日志
如果运行过程中出现错误,请不要忘记查看错误日志。
到此我们的基本环境搭建完毕。
nginx+lua项目构建以后我们的nginx lua开发文件会越来越多,我们应该把其项目化,已方便开发。项目目录结构如下所示: example example.conf ---该项目的nginx 配置文件 lua ---我们自己的lua代码 test.lua lualib ---lua依赖库/第三方依赖 *.lua *.so
其中我们把lualib也放到项目中的好处就是以后部署的时候可以一起部署,防止有的服务器忘记复制依赖而造成缺少依赖的情况。
我们将项目放到到/usr/example目录下。
/usr/servers/nginx/conf/nginx.conf配置文件如下(此处我们最小化了配置文件)
通过绝对路径包含我们的lua依赖库和nginx项目配置文件。
/usr/example/example.conf配置文件如下
lua文件我们使用绝对路径/usr/example/lua/test.lua。
|
请发表评论