up vote 2 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted
sudo ln -s /etc/apache2/mods-available/deflate.load /etc/apache2/mods-enabled/

and restart apache

sudo /etc/init.d/apache2 restart
link|improve this answer
That's it? I don't have to do anything else? Everything should work correctly, as if nothing has changed? – Alex Mar 15 '10 at 8:40
or you can just do "sudo a2enmod deflate", which does the same thing. – Chris Kimpton Aug 6 '10 at 17:26
feedback

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 ]
$
link|improve this answer
feedback

check this manual, describes quite clearly and is for debian like systems

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.