码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx+lua环境搭建

时间:2015-09-08 00:29:50      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

其实有点类似WampServer一站式安装包

wget http://openresty.org/download/ngx_openresty-1.7.10.1.tar.gz
tar -zxvf ngx_openresty-1.7.10.1.tar.gz
cd ngx_openresty-1.7.10.1
./configure
make && make install

configure之前需要安装的相关组件

yum -y install pcre-devel
yum -y install gcc zlib zlib-devel openssl openssl-devel

安装目录默认会在

cd /usr/local/openresty/

测试lua环境是否正常

lua
print("hello")

测试nginx+lua

cd /usr/local/openresty/nginx/conf

在nginx.conf里添加测试内容

location /hello {
       default_type text/plain;
       content_by_lua ngx.say("ok");
       }

location /say {
default_type text/html;
content_by_lua ‘
ngx.say("<p>hello, world</p>")
ngx.say(tostring(ngx.var.remote_addr),"<br/>")
ngx.say(tostring(ngx.var.arg_name),"<br/>")
‘;
}

 

启动nginx

sbin/nginx

测试:

[root@k2 nginx]# curl http://localhost/hello
ok

 浏览器访问:

技术分享

 

技术分享

参考:

http://openresty.org/

https://m.oschina.net/blog/344540 

Nginx+lua环境搭建

标签:

原文地址:http://www.cnblogs.com/super-d2/p/4790237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!