Submitted by rw on Fri, 02/01/2008 - 05:13.
This presumes that you will install drupal 6 in /var/www/drupal6/
Prerequisites
apt-get install apache2 php5-mysql php5-gd libapache2-mod-php5 mysql-server
Configure httpd.conf by adding a ServerName line
ServerName localhost
[Updated for Jaunty]
Configure /etc/apache2/sites-available/default by allowing overrides
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
Start apache
read more »