@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update configuration instructions for Apache 2.4

Summary:
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.

Test Plan: Tested on apache 2.4 install

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley

CC: Korvin, epriestley, aran, asherkin

Maniphest Tasks: T4061

Differential Revision: https://secure.phabricator.com/D7529

authored by

Anirudh Sanjeev and committed by
epriestley
769e921e 1bcf478c

+12 -1
+12 -1
src/docs/user/configuration/configuration_guide.diviner
··· 55 55 </VirtualHost> 56 56 57 57 If Apache isn't currently configured to serve documents out of the directory 58 - where you put Phabricator, you may also need to add a section like this: 58 + where you put Phabricator, you may also need to add `<Directory />` section. The 59 + syntax for this section depends on which version of Apache you're running. 60 + (If you don't know, you can usually figure this out by running `httpd -v`.) 61 + For Apache versions older than 2.4, use this: 59 62 63 + name="Apache Older Than 2.4" 60 64 <Directory "/path/to/phabricator/webroot"> 61 65 Order allow,deny 62 66 Allow from all 67 + </Directory> 68 + 69 + For Apache versions 2.4 and newer, use this: 70 + 71 + name="Apache 2.4 and Newer" 72 + <Directory "/path/to/phabricator/webroot"> 73 + Require all granted 63 74 </Directory> 64 75 65 76 After making your edits, restart Apache, then continue to "Setup" below.