Open
Description
I am trying to build the Modsecurity Module as a dynamic module for Nginx, on Ubuntu 22.04.
On THIS PAGE https://github.com/owasp-modsecurity/ModSecurity/wiki/Compilation-recipes-for-v3.x#ubuntu-2210 .
Under the "Ubuntu 22.10" --> libModSecurity" section, it shows the following:
$ sudo apt-get install git g++ apt-utils autoconf automake build-essential libcurl4-openssl-dev libgeoip-dev liblmdb-dev libpcre2-dev libtool libxml2-dev libyajl-dev pkgconf zlib1g-dev
$ git clone https://github.com/SpiderLabs/ModSecurity
Shouldn't we be downloading from the new the source (Master) repository from from "Owasp-Modsecurity" like this:
$ sudo apt-get install git g++ apt-utils autoconf automake build-essential libcurl4-openssl-dev libgeoip-dev liblmdb-dev libpcre2-dev libtool libxml2-dev libyajl-dev pkgconf zlib1g-dev
$ git clone https://github.com/owasp-modsecurity/ModSecurity.git
I am trying to build the submodule and libmodsecurity from source and need to know which repository I should be building from. Please let me know. Thanks.