June 18th, 2008
|
No Comments »
Posted by admin under FreeBSD
you know, by adding mod_dosevasive in our apache service, it can reduce and minimalize DDoS attack to our webserver.
I already use it in My webserver and running well. Here is my message log after adding it:
mod_evasive[18805]: Blacklisting address 24.166.11.120:
Jun 18 04:16:21 ns1 mod_evasive[18004]: Blacklisting address 84.154.214.230:
Jun 18 05:43:09 ns1 mod_evasive[20566]: Blacklisting address 202.182.55.110:
Jun 18 10:02:44 ns1 mod_evasive[23635]: Blacklisting address 203.92.123.234:
How to install dosevasive?
- you can download dosevasive here
- extract it
#tar -zxvf mod_evasive_1.10.1.tar.gz // replace the 1.10.1 with the version you downloaded //
Change directories so you are inside the mod_dosevasive directory
#cd mod_dosevasive
If you are running Apache v1.3, then do this
# /usr/local/apache/bin/apxs -i -a -c mod_dosevasive.c
If you are running Apache v2.0 then do this,
# /usr/local/apache/bin/apxs -i -a -c mod_dosevasive20.c
Read the rest of this entry »
June 10th, 2008
|
1 Comment »
Posted by admin under Humor
——————The storie Begin——————————–
Sebut saja namanya Mia.Karena ada pekerjaan yg tidak bisa ditinggal,maka ia harus bekerja sampai larut malam di kantornya.
Read the rest of this entry »
Introduction:
PhpMyAdmin is a tool written in PHP intended to handle the administration of MySQL over the Web. By using it, we can upload and download database very easy. Not only download and upload, we can also add user and setting privillege for all user. Recommended : always using new version of PhpMyadmin for save.
Make sure Webserver (apache+php and Mysql ) already install in your FreeBSD BOX.
Ok lets Begin
Always using port ( thats why I Love FreeBSD );
# cd /usr/ports/databases/phpmyadmin
# make install clean
now add this in your httpd.conf usually in /usr/local/etc/apache22/ directory.
# ee /usr/local/etc/apache22/httpd.conf
——–begin———
Alias /phpmyadmin “/usr/local/www/phpMyAdmin/â€
Options none
AllowOverride Limit
Order allow,deny
Allow from all
—–finish———
save it.
now lets edit in your config.default.php
change this option
entry $cfg[’Servers’][$i][’auth_type’] = ‘config’;
to
$cfg[’Servers’][$i][’auth_type’] = ‘http’;
and this option
$cfg[’Servers’][$i][’user’] = ‘root’;
to
$cfg[’Servers’][$i][’user’] = ‘’; // empty
and save it
oke lets check it in your web browser
http://www.your-example-domain.com/phpmyadmin
Cerita yang menginspirasi kita untuk bisa lebih menghargai dan mencintai….
Read the rest of this entry »