#946818 spip: apache configuration in apache2.conf example

#946818#5
Date:
2019-12-16 08:59:49 UTC
From:
To:
Dear Maintainer,

After copy the apache2 configuration example file from
/usr/share/doc/spip/apache2.conf, I have to add "Require all granted" apache
instruction.

I replace :

<Directory /var/lib/spip/sites/default/IMG>
   php_flag engine Off
</Directory>

with :

<Directory /var/lib/spip/sites/default/IMG>
   php_flag engine Off
   Require all granted
</Directory>
<Directory /var/lib/spip/sites/default/local>
   php_flag engine Off
   Require all granted
</Directory>

I don't know if it's specific to my configuration. And, perhaps, there is
another (and better) way to fix it.