I simply did :
sudo aptitude install apache2
And that's how my server is set up. No extra modules, no nothing.
I'm on ubuntu jaunty.
I simply did :
sudo aptitude install apache2
And that's how my server is set up. No extra modules, no nothing.
I'm on ubuntu jaunty.
Debian/Ubuntu have the a2* set of scripts for managing modules and vhosts. You can use a2enmod:
$ sudo a2enmod deflate
Enabling module deflate.
Run '/etc/init.d/apache2 restart' to activate new configuration!
$ sudo /etc/init.d/apache2 restart
* Restarting web server apache2
... waiting [ OK ]
$
sudo ln -s /etc/apache2/mods-available/deflate.load /etc/apache2/mods-enabled/
and restart apache
sudo /etc/init.d/apache2 restart