mac 上安装openresty

Yishto 2021-08-20 21:47:03
Categories: Tags:

本来想着在mac上,基于install nginx上安装nginx_lua,无奈没有找到破解方法

于是在mac上通过openresty来测试nginx lua

安装很简单

1
2
3
4
5
brew update
brew install pcre openssl
brew install openresty/brew/openresty
openresty -V # 检查版本及支持模块

默认openresty 下 nginx配置文件

1
2
3
4
5
6
## 添加测试代码
location /hello_lua {
default_type 'text/plain';
content_by_lua 'ngx.say("hello, lua")';
}

测试访问,看lua是否工作

1
2
curl localhost:80/hello_lua

安装的目录, 扩展都在这个目录下:

1
2
/usr/local/Cellar/openresty/1.17.8.2_1/lualib

启动:

1
2
sudo openresty

检查配置:

1
2
sudo openresty -t 

热重启

1
2
sudo openresty -s reload