• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Centos 下安装 nginx+lua openResty 环境

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

参考安装地址:

http://openresty.org/cn/installation.html

1. 下载 openresty 源码包

如需请先安装依赖:yum install readline-devel pcre-devel openssl-devel gcc

wget https://openresty.org/download/openresty-1.13.6.2.tar.gz


2.  解压缩安装(将其安装到 --prefix 指定的 /opt/openresty 文件夹下,不指定则会默认到 /usr/local/openresty )

tar -zxvf https://openresty.org/download/openresty-1.13.6.2.tar.gz

cd openresty-1.13.6.2

./configure --with-cc-opt="-I/usr/local/include" --with-ld-opt="-L/usr/local/lib" --prefix=/opt/openresty 

make

make install

3.  启动 nginx 并测试 lua

cd /opt/openresty

ls

可以查看到相关文件夹:


启动:

/opt/openresty/nginx/sbin/nginx -c /opt/openresty/nginx/conf/nginx.conf -p /opt/openresty/nginx/

查看启动的 nginx:

ps aux|grep nginx


可以看到 nginx 已经启动成功了,如果原系统已经有运行的 nginx,只需改动 nginx 的配置端口即可,不影响原 nginx

vim /opt/openresty/nginx/conf/nginx.conf

将端口改成未被占用的任意端口, 如下的 8099

添加测试 location 后保存 nginx.conf:

location /lua {
            set $test "hello, world. i love lua";
            content_by_lua '
                ngx.header.content_type = "text/plain";
                ngx.say(ngx.var.test);
            ';
        }


重新启动:

/opt/openresty/nginx/sbin/nginx -s stop

/opt/openresty/nginx/sbin/nginx -c /opt/openresty/nginx/conf/nginx.conf -p /opt/openresty/nginx/

测试访问:

curl http://localhost:8099/lua



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
CentOS安装编译Lua发布时间:2022-07-22
下一篇:
lua解析json发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap