本来想着在mac上,基于install nginx上安装nginx_lua,无奈没有找到破解方法
于是在mac上通过openresty来测试nginx lua
安装很简单
1 | brew update |
默认openresty 下 nginx配置文件
1 | ## 添加测试代码 |
测试访问,看lua是否工作
1 | curl localhost:80/hello_lua |
安装的目录, 扩展都在这个目录下:
1 | /usr/local/Cellar/openresty/1.17.8.2_1/lualib |
启动:
1 | sudo openresty |
检查配置:
1 | sudo openresty -t |
热重启
1 | sudo openresty -s reload |