Nice tutorials

And instead of using Apache, I convert it for using Lighttpd under Debian. Here is some sort tutorials for installing Rapidleech in a Debian VPS :

1. Upgrade and update the VPS
# apt-get update && apt-get upgrade
2. Remove the Apache
#apt-get remove apache or
#apt-get remove apache2
3. Install the Lighttpd
#apt-get install lighttpd
4. Enable lighttpd simple vhost, and restart lighttpd
#lighttpd-enable-mod simple-vhost
5. Installing the php
#apt-get install php5-cgi
6. Modify the php handler, and restart lighttpd
#cat > /etc/lighttpd/conf-enabled/10-cgi-php.conf
server.modules += ("mod_cgi")
cgi.assign = (".php" => "/usr/bin/php5-cgi") ^D
#/etc/init.d/lighttpd force-reload
7. Disable mysql, since we did not need it for Rapidleech
#/etc/init.d/mysql stop
#chkconfig mysql off
I am using Debian VPS and lighttpd for my Private Rapidleech server, because it use small memory ( ~ 20mb only)
After it all done, we just need to download the Rapidleech script, and follow the installation tutorials