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 […]
See MoreTag: web hosting
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 […]
See MoreInstall mod_log_sql
wget http://www.outoforder.cc/downloads/mod_log_sql/mod_log_sql-1.101.tar.bz2 bunzip tar -xvf cd /configure –with-apxs=/usr/local/apache/bin/apxs –with-mysql=/usr make make install mysql -u root -p mysql> create database apachelog; Configuring Apache to log to MySQL using mod_log_sql in httpd.conf LoadModule log_sql_module /usr/local/apache/libexec/mod_log_sql.so LoadModule log_sql_mysql_module /usr/local/apache/libexec/mod_log_sql_mysql.so
See More