From c52727d502ff0f19ebd06c73026fed21862d0a8f Mon Sep 17 00:00:00 2001 From: Chaim Sanders Date: Tue, 12 Jan 2016 19:10:02 -0500 Subject: [PATCH] Updated Compilation recipes (markdown) --- Compilation-recipes.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/Compilation-recipes.md b/Compilation-recipes.md index dea17d1..3c2dd49 100644 --- a/Compilation-recipes.md +++ b/Compilation-recipes.md @@ -227,12 +227,15 @@ make install ### nginx-connector (openresty) ```sh -$ cd /opt/ -$ git clone https://github.com/SpiderLabs/ModSecurity-nginx -$ cd /opt/Modsecurity-nginx -$ git checkout experimental -$ cd /opt/ -$ wget https://openresty.org/download/ngx_openresty-1.9.7.1.tar.gz -$ tar -xvzf ngx_openresty-1.9.7.1.tar.gz -$ ./configure --add-module=/opt/ModSecurity-nginx +cd /opt/ +git clone https://github.com/SpiderLabs/ModSecurity-nginx +cd /opt/ModSecurity-nginx +git checkout experimental +cd /opt +wget http://nginx.org/download/nginx-1.9.2.tar.gz +tar -xvzf nginx-1.9.2.tar.gz +cd /opt/nginx-1.9.2 +./configure --add-module=/opt/ModSecurity-nginx +make +make install ```