I've been using the following simple steps to install nginx;
cd /usr/local/src
wget http://nginxcp.com/latest/nginxadmin.tar
tar xf nginxadmin.tar
cd publicnginx
./nginxinstaller install
However this installs a standard build.
I would now like to include some additional modules. Is it possible, by adding to the steps above something like;
./configure --with-http_gzip_static_module --with-http_geo_module
Or do I need to;
make
make install
cd /usr/local/src
wget http://nginxcp.com/latest/nginxadmin.tar
tar xf nginxadmin.tar
cd publicnginx
./nginxinstaller install
However this installs a standard build.
I would now like to include some additional modules. Is it possible, by adding to the steps above something like;
./configure --with-http_gzip_static_module --with-http_geo_module
Or do I need to;
make
make install