Skip to content

Instantly share code, notes, and snippets.

@diverted247
Created September 29, 2013 22:25
Show Gist options
  • Save diverted247/6757150 to your computer and use it in GitHub Desktop.
Save diverted247/6757150 to your computer and use it in GitHub Desktop.
Build automation for Openresty + luajit + postgres on OSX
open_resty_version="ngx_openresty-1.4.2.7"
wget http://openresty.org/download/${open_resty_version}.tar.gz
tar xzvf ${open_resty_version}.tar.gz
cd ${open_resty_version}
brew install pcre
brew install postgresql
./configure --with-luajit --with-http_postgres_module --with-cc-opt="-I/usr/local/include" --with-ld-opt="-L/usr/local/lib"
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment