首页 > 技术文章 > mac下openresty安装

sanshuiqing 2016-09-27 09:28 原文

//openresty安装 http://openresty.org/

brew update
brew install pcre openssl

./configure --prefix=/usr/local/openresty --with-cc-opt="-I/usr/local/opt/openssl/include/ -I/usr/local/opt/pcre/include/" --with-ld-opt="-L/usr/local/opt/openssl/lib/ -L/usr/local/opt/pcre/lib/" -j8
make
sudo make install

//luarocks 安装 www.luarocks.org
tar -xzvf luarocks-2.X.X.tar.gz
cd luarocks-2.X.X/

./configure --prefix=/usr/local/openresty/luajit \
--with-lua=/usr/local/openresty/luajit/ \
--lua-suffix=jit \
--with-lua-include=/usr/local/openresty/luajit/include/luajit-2.1
make
sudo make install

推荐阅读