#11 update resultsdb_frontend conf to be compatible with apache 2.4
Closed: Fixed None Opened 10 years ago by tflink.

The current conf for resultsdb_frontend uses only apache 2.2 style config which can't be deployed on f20+

Change the following:
Order deny,allow
Allow from all

To:
<IfModule mod_authz_core.c>
# Apache 2.4
Require all granted
</IfModule>
<IfModule !mod_auth_core.c>
Order allow,deny
Allow from all
</IfModule>


This ticket had assigned some Differential requests:
D407

Login to comment on this ticket.

Metadata