Mod_ipdrop

mkdir ipdrop cd ipdrop wget http://miksir.pp.ru/mod_ipdrop_v001/Makefile wget http://miksir.pp.ru/mod_ipdrop_v001/mod_ipdrop.c APXS=/usr/local/apache/bin/apxs make APXS=/usr/local/apache/bin/apxs make install vi /etc/httpd/conf/httpd.conf /etc/init.d/httpd restart ##         ## #  CONFIGURATION  # ##         ## GlobalMaxConnectionsPerIP 10 10 10 IPDropDebug 1 —————————- mod_ipdrop is already installed on server and configure it as follows http://miksir.pp.ru/mod_ipdrop_v001/README

Mod_evasive Installation

Use following steps to do it. cd /usr/local/src wget http://www.zdziarski.com/projects/mod_evasive/mod_evasive_1.10.1.tar.gz tar -zxf mod_evasive_1.10.1.tar.gz cd mod_evasive /usr/local/apache/bin/apxs -cia mod_evasive.c ———- Follow this section for Apache 2.0.x. ———- up2date -i httpd-devel cd /usr/local/src wget http://www.zdziarski.com/projects/mod_evasive/mod_evasive_1.10.1.tar.gz tar -zxf mod_evasive_1.10.1.tar.gz cd mod_evasive /usr/sbin/apxs -cia mod_evasive20.c ———- If you are adding the is module to apache 1.3.x the following lines […]

mod_python Installation

cd /usr/local/src FOR APache 2 wget http://apache.hoxt.com/httpd/modpython/mod_python-3.3.1.tgz FOR Apache 1 wget http://apache.hoxt.com/httpd/modpython/mod_python-2.7.11.tgz 2) Configure & install Python cd mod_python-2.7.11 ./configure –with-apxs=/usr/local/apache/bin/apxs (check where your apxs is by typing: locate apxs) make make install 3) Configure Apache pico -w /usr/local/apache/conf/httpd.conf Locate your LoadModule – section by pressing CTRL-W and typing “LoadModule”. Add the following line under […]