Updated Compilation recipes (markdown)

Chaim Sanders 2016-01-12 19:10:02 -05:00
parent f007c7dffd
commit c52727d502

@ -227,12 +227,15 @@ make install
### nginx-connector (openresty) ### nginx-connector (openresty)
```sh ```sh
$ cd /opt/ cd /opt/
$ git clone https://github.com/SpiderLabs/ModSecurity-nginx git clone https://github.com/SpiderLabs/ModSecurity-nginx
$ cd /opt/Modsecurity-nginx cd /opt/ModSecurity-nginx
$ git checkout experimental git checkout experimental
$ cd /opt/ cd /opt
$ wget https://openresty.org/download/ngx_openresty-1.9.7.1.tar.gz wget http://nginx.org/download/nginx-1.9.2.tar.gz
$ tar -xvzf ngx_openresty-1.9.7.1.tar.gz tar -xvzf nginx-1.9.2.tar.gz
$ ./configure --add-module=/opt/ModSecurity-nginx cd /opt/nginx-1.9.2
./configure --add-module=/opt/ModSecurity-nginx
make
make install
``` ```