Comment 13 for bug 95162

Revision history for this message
Dan Butler (dbutler1986) wrote :

This is a rather easy fix - I don't know if it could be done as a post-install script or something? Anyway, I fixed it with the following:

$ cd /etc/apache2/mods-enabled
$ for f in `ls ../mods-available` do
> sudo ln -s ../mods-available/$f $f
>done
$ sudo apache2 -k start

This is because even with authz_host loaded, there are more 'bugs' in the conf file caused by other modules that are not loaded by default in this version of the apache2 package for feisty. I didn't want to go through them all so I just enabled every module. You might prefer to go through them one by one until it stops panicking.