Fixes T4061. Following the instructions in the documentation with Apache 2.4 (which is installed
with Ubuntu 13.10 and other distributions) will result in a "403 forbidden" error.
The instruction provides information on how to fix it.
Differential D7529
Update configuration instructions for Apache 2.4 skyronic on Nov 8 2013, 10:46 AM. Authored by Tags None Referenced Files
Subscribers
Details
Fixes T4061. Following the instructions in the documentation with Apache 2.4 (which is installed The instruction provides information on how to fix it. Tested on apache 2.4 install
Diff Detail
Event TimelineComment Actions <IfModule mod_authz_core.c> # Apache 2.4 Require all granted </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order allow,deny Allow from all </IfModule> Comment Actions I kind of split the difference in the pull, see the updated diff. Yell if I messed anything up. Comment Actions @epriestley - This is exactly how I planned to re-write it :) @asherkin - actually that's a pretty cool hack. I am trying to create a Vagrant image of phabricator and I used your snippet because your approach is more bullet-proof across different versions. |