Details
-
Improvement
-
Resolution: Fixed
-
Trivial
-
None
-
None
-
Apache 2.4
Description
The guide at http://www.observium.org/wiki/Debian_Ubuntu_Installation includes the following snippet as part of the example Apache configuration:
<Directory /opt/observium/html/>
|
Options Indexes FollowSymLinks MultiViews
|
AllowOverride All
|
Order allow,deny
|
allow from all
|
</Directory>
|
Apache 2.4 has changed the authorisation and access control framework significantly (see http://httpd.apache.org/docs/2.4/upgrading.html#run-time).
For Apache 2.4, the equivalent is:
<Directory /opt/observium/html/>
|
Options Indexes FollowSymLinks MultiViews
|
AllowOverride All
|
Require all granted
|
</Directory>
|
This should be added as a note to the example configuration.
Updated